]> git.sesse.net Git - ffmpeg/blob - libavformat/wav.c
Merge remote branch 'qatar/master'
[ffmpeg] / libavformat / wav.c
1 /*
2  * WAV muxer and demuxer
3  * Copyright (c) 2001, 2002 Fabrice Bellard
4  *
5  * Sony Wave64 demuxer
6  * RF64 demuxer
7  * Copyright (c) 2009 Daniel Verkamp
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25 #include "avformat.h"
26 #include "avio_internal.h"
27 #include "pcm.h"
28 #include "riff.h"
29
30 typedef struct {
31     int64_t data;
32     int64_t data_end;
33     int64_t minpts;
34     int64_t maxpts;
35     int last_duration;
36     int w64;
37 } WAVContext;
38
39 #if CONFIG_WAV_MUXER
40 static int wav_write_header(AVFormatContext *s)
41 {
42     WAVContext *wav = s->priv_data;
43     AVIOContext *pb = s->pb;
44     int64_t fmt, fact;
45
46     ffio_wfourcc(pb, "RIFF");
47     avio_wl32(pb, 0); /* file length */
48     ffio_wfourcc(pb, "WAVE");
49
50     /* format header */
51     fmt = ff_start_tag(pb, "fmt ");
52     if (ff_put_wav_header(pb, s->streams[0]->codec) < 0) {
53         av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
54                s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
55         return -1;
56     }
57     ff_end_tag(pb, fmt);
58
59     if (s->streams[0]->codec->codec_tag != 0x01 /* hence for all other than PCM */
60         && s->pb->seekable) {
61         fact = ff_start_tag(pb, "fact");
62         avio_wl32(pb, 0);
63         ff_end_tag(pb, fact);
64     }
65
66     av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
67     wav->maxpts = wav->last_duration = 0;
68     wav->minpts = INT64_MAX;
69
70     /* data header */
71     wav->data = ff_start_tag(pb, "data");
72
73     avio_flush(pb);
74
75     return 0;
76 }
77
78 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
79 {
80     AVIOContext *pb  = s->pb;
81     WAVContext    *wav = s->priv_data;
82     avio_write(pb, pkt->data, pkt->size);
83     if(pkt->pts != AV_NOPTS_VALUE) {
84         wav->minpts        = FFMIN(wav->minpts, pkt->pts);
85         wav->maxpts        = FFMAX(wav->maxpts, pkt->pts);
86         wav->last_duration = pkt->duration;
87     } else
88         av_log(s, AV_LOG_ERROR, "wav_write_packet: NOPTS\n");
89     return 0;
90 }
91
92 static int wav_write_trailer(AVFormatContext *s)
93 {
94     AVIOContext *pb  = s->pb;
95     WAVContext    *wav = s->priv_data;
96     int64_t file_size;
97
98     avio_flush(pb);
99
100     if (s->pb->seekable) {
101         ff_end_tag(pb, wav->data);
102
103         /* update file size */
104         file_size = avio_tell(pb);
105         avio_seek(pb, 4, SEEK_SET);
106         avio_wl32(pb, (uint32_t)(file_size - 8));
107         avio_seek(pb, file_size, SEEK_SET);
108
109         avio_flush(pb);
110
111         if(s->streams[0]->codec->codec_tag != 0x01) {
112             /* Update num_samps in fact chunk */
113             int number_of_samples;
114             number_of_samples = av_rescale(wav->maxpts - wav->minpts + wav->last_duration,
115                                            s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
116                                            s->streams[0]->time_base.den);
117             avio_seek(pb, wav->data-12, SEEK_SET);
118             avio_wl32(pb, number_of_samples);
119             avio_seek(pb, file_size, SEEK_SET);
120             avio_flush(pb);
121         }
122     }
123     return 0;
124 }
125
126 AVOutputFormat ff_wav_muxer = {
127     "wav",
128     NULL_IF_CONFIG_SMALL("WAV format"),
129     "audio/x-wav",
130     "wav",
131     sizeof(WAVContext),
132     CODEC_ID_PCM_S16LE,
133     CODEC_ID_NONE,
134     wav_write_header,
135     wav_write_packet,
136     wav_write_trailer,
137     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
138 };
139 #endif /* CONFIG_WAV_MUXER */
140
141
142 #if CONFIG_WAV_DEMUXER
143
144 static int64_t next_tag(AVIOContext *pb, unsigned int *tag)
145 {
146     *tag = avio_rl32(pb);
147     return avio_rl32(pb);
148 }
149
150 /* return the size of the found tag */
151 static int64_t find_tag(AVIOContext *pb, uint32_t tag1)
152 {
153     unsigned int tag;
154     int64_t size;
155
156     for (;;) {
157         if (url_feof(pb))
158             return -1;
159         size = next_tag(pb, &tag);
160         if (tag == tag1)
161             break;
162         avio_skip(pb, size);
163     }
164     return size;
165 }
166
167 static int wav_probe(AVProbeData *p)
168 {
169     /* check file header */
170     if (p->buf_size <= 32)
171         return 0;
172     if (!memcmp(p->buf + 8, "WAVE", 4)) {
173         if (!memcmp(p->buf, "RIFF", 4))
174             /*
175               Since ACT demuxer has standard WAV header at top of it's own,
176               returning score is decreased to avoid probe conflict
177               between ACT and WAV.
178             */
179             return AVPROBE_SCORE_MAX - 1;
180         else if (!memcmp(p->buf,      "RF64", 4) &&
181                  !memcmp(p->buf + 12, "ds64", 4))
182             return AVPROBE_SCORE_MAX;
183     }
184     return 0;
185 }
186
187 /* wav input */
188 static int wav_read_header(AVFormatContext *s,
189                            AVFormatParameters *ap)
190 {
191     int64_t size, av_uninit(data_size);
192     int64_t sample_count=0;
193     int rf64;
194     unsigned int tag;
195     AVIOContext *pb = s->pb;
196     AVStream *st;
197     WAVContext *wav = s->priv_data;
198     int ret;
199
200     /* check RIFF header */
201     tag = avio_rl32(pb);
202
203     rf64 = tag == MKTAG('R', 'F', '6', '4');
204     if (!rf64 && tag != MKTAG('R', 'I', 'F', 'F'))
205         return -1;
206     avio_rl32(pb); /* file size */
207     tag = avio_rl32(pb);
208     if (tag != MKTAG('W', 'A', 'V', 'E'))
209         return -1;
210
211     if (rf64) {
212         if (avio_rl32(pb) != MKTAG('d', 's', '6', '4'))
213             return -1;
214         size = avio_rl32(pb);
215         if (size < 16)
216             return -1;
217         avio_rl64(pb); /* RIFF size */
218         data_size = avio_rl64(pb);
219         sample_count = avio_rl64(pb);
220         avio_skip(pb, size - 16); /* skip rest of ds64 chunk */
221     }
222
223     /* parse fmt header */
224     size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
225     if (size < 0)
226         return -1;
227     st = av_new_stream(s, 0);
228     if (!st)
229         return AVERROR(ENOMEM);
230
231     ret = ff_get_wav_header(pb, st->codec, size);
232     if (ret < 0)
233         return ret;
234     st->need_parsing = AVSTREAM_PARSE_FULL;
235
236     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
237
238     for (;;) {
239         if (url_feof(pb))
240             return -1;
241         size = next_tag(pb, &tag);
242         if (tag == MKTAG('d', 'a', 't', 'a')){
243             break;
244         }else if (tag == MKTAG('f','a','c','t') && !sample_count){
245             sample_count = avio_rl32(pb);
246             size -= 4;
247         }
248         avio_skip(pb, size);
249     }
250     if (rf64)
251         size = data_size;
252     if (size < 0)
253         return -1;
254     if (!size) {
255         wav->data_end = INT64_MAX;
256     } else
257         wav->data_end= avio_tell(pb) + size;
258
259     if (!sample_count && st->codec->channels && av_get_bits_per_sample(st->codec->codec_id))
260         sample_count = (size<<3) / (st->codec->channels * (uint64_t)av_get_bits_per_sample(st->codec->codec_id));
261     if (sample_count)
262         st->duration = sample_count;
263     return 0;
264 }
265
266 /** Find chunk with w64 GUID by skipping over other chunks
267  * @return the size of the found chunk
268  */
269 static int64_t find_guid(AVIOContext *pb, const uint8_t guid1[16])
270 {
271     uint8_t guid[16];
272     int64_t size;
273
274     while (!url_feof(pb)) {
275         avio_read(pb, guid, 16);
276         size = avio_rl64(pb);
277         if (size <= 24)
278             return -1;
279         if (!memcmp(guid, guid1, 16))
280             return size;
281         avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
282     }
283     return -1;
284 }
285
286 static const uint8_t guid_data[16] = { 'd', 'a', 't', 'a',
287     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
288
289 #define MAX_SIZE 4096
290
291 static int wav_read_packet(AVFormatContext *s,
292                            AVPacket *pkt)
293 {
294     int ret, size;
295     int64_t left;
296     AVStream *st;
297     WAVContext *wav = s->priv_data;
298
299     st = s->streams[0];
300
301     left = wav->data_end - avio_tell(s->pb);
302     if (left <= 0){
303         if (CONFIG_W64_DEMUXER && wav->w64)
304             left = find_guid(s->pb, guid_data) - 24;
305         else
306             left = find_tag(s->pb, MKTAG('d', 'a', 't', 'a'));
307         if (left < 0)
308             return AVERROR_EOF;
309         wav->data_end= avio_tell(s->pb) + left;
310     }
311
312     size = MAX_SIZE;
313     if (st->codec->block_align > 1) {
314         if (size < st->codec->block_align)
315             size = st->codec->block_align;
316         size = (size / st->codec->block_align) * st->codec->block_align;
317     }
318     size = FFMIN(size, left);
319     ret  = av_get_packet(s->pb, pkt, size);
320     if (ret < 0)
321         return ret;
322     pkt->stream_index = 0;
323
324     return ret;
325 }
326
327 static int wav_read_seek(AVFormatContext *s,
328                          int stream_index, int64_t timestamp, int flags)
329 {
330     AVStream *st;
331
332     st = s->streams[0];
333     switch (st->codec->codec_id) {
334     case CODEC_ID_MP2:
335     case CODEC_ID_MP3:
336     case CODEC_ID_AC3:
337     case CODEC_ID_DTS:
338         /* use generic seeking with dynamically generated indexes */
339         return -1;
340     default:
341         break;
342     }
343     return pcm_read_seek(s, stream_index, timestamp, flags);
344 }
345
346 AVInputFormat ff_wav_demuxer = {
347     "wav",
348     NULL_IF_CONFIG_SMALL("WAV format"),
349     sizeof(WAVContext),
350     wav_probe,
351     wav_read_header,
352     wav_read_packet,
353     NULL,
354     wav_read_seek,
355     .flags= AVFMT_GENERIC_INDEX,
356     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
357 };
358 #endif /* CONFIG_WAV_DEMUXER */
359
360
361 #if CONFIG_W64_DEMUXER
362 static const uint8_t guid_riff[16] = { 'r', 'i', 'f', 'f',
363     0x2E, 0x91, 0xCF, 0x11, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00 };
364
365 static const uint8_t guid_wave[16] = { 'w', 'a', 'v', 'e',
366     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
367
368 static const uint8_t guid_fmt [16] = { 'f', 'm', 't', ' ',
369     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
370
371 static int w64_probe(AVProbeData *p)
372 {
373     if (p->buf_size <= 40)
374         return 0;
375     if (!memcmp(p->buf,      guid_riff, 16) &&
376         !memcmp(p->buf + 24, guid_wave, 16))
377         return AVPROBE_SCORE_MAX;
378     else
379         return 0;
380 }
381
382 static int w64_read_header(AVFormatContext *s, AVFormatParameters *ap)
383 {
384     int64_t size;
385     AVIOContext *pb  = s->pb;
386     WAVContext    *wav = s->priv_data;
387     AVStream *st;
388     uint8_t guid[16];
389     int ret;
390
391     avio_read(pb, guid, 16);
392     if (memcmp(guid, guid_riff, 16))
393         return -1;
394
395     if (avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8) /* riff + wave + fmt + sizes */
396         return -1;
397
398     avio_read(pb, guid, 16);
399     if (memcmp(guid, guid_wave, 16)) {
400         av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
401         return -1;
402     }
403
404     size = find_guid(pb, guid_fmt);
405     if (size < 0) {
406         av_log(s, AV_LOG_ERROR, "could not find fmt guid\n");
407         return -1;
408     }
409
410     st = av_new_stream(s, 0);
411     if (!st)
412         return AVERROR(ENOMEM);
413
414     /* subtract chunk header size - normal wav file doesn't count it */
415     ret = ff_get_wav_header(pb, st->codec, size - 24);
416     if (ret < 0)
417         return ret;
418     avio_skip(pb, FFALIGN(size, INT64_C(8)) - size);
419
420     st->need_parsing = AVSTREAM_PARSE_FULL;
421
422     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
423
424     size = find_guid(pb, guid_data);
425     if (size < 0) {
426         av_log(s, AV_LOG_ERROR, "could not find data guid\n");
427         return -1;
428     }
429     wav->data_end = avio_tell(pb) + size - 24;
430     wav->w64      = 1;
431
432     return 0;
433 }
434
435 AVInputFormat ff_w64_demuxer = {
436     "w64",
437     NULL_IF_CONFIG_SMALL("Sony Wave64 format"),
438     sizeof(WAVContext),
439     w64_probe,
440     w64_read_header,
441     wav_read_packet,
442     NULL,
443     wav_read_seek,
444     .flags = AVFMT_GENERIC_INDEX,
445     .codec_tag = (const AVCodecTag* const []){ff_codec_wav_tags, 0},
446 };
447 #endif /* CONFIG_W64_DEMUXER */