]> git.sesse.net Git - ffmpeg/blob - libavformat/wav.c
asf: split ASFContext into muxer and demuxer parts.
[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 "pcm.h"
27 #include "riff.h"
28
29 typedef struct {
30     int64_t data;
31     int64_t data_end;
32     int64_t minpts;
33     int64_t maxpts;
34     int last_duration;
35     int w64;
36 } WAVContext;
37
38 #if CONFIG_WAV_MUXER
39 static int wav_write_header(AVFormatContext *s)
40 {
41     WAVContext *wav = s->priv_data;
42     ByteIOContext *pb = s->pb;
43     int64_t fmt, fact;
44
45     put_tag(pb, "RIFF");
46     put_le32(pb, 0); /* file length */
47     put_tag(pb, "WAVE");
48
49     /* format header */
50     fmt = ff_start_tag(pb, "fmt ");
51     if (ff_put_wav_header(pb, s->streams[0]->codec) < 0) {
52         av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
53                s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
54         av_free(wav);
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         && !url_is_streamed(s->pb)) {
61         fact = ff_start_tag(pb, "fact");
62         put_le32(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     put_flush_packet(pb);
74
75     return 0;
76 }
77
78 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
79 {
80     ByteIOContext *pb  = s->pb;
81     WAVContext    *wav = s->priv_data;
82     put_buffer(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     ByteIOContext *pb  = s->pb;
95     WAVContext    *wav = s->priv_data;
96     int64_t file_size;
97
98     put_flush_packet(pb);
99
100     if (!url_is_streamed(s->pb)) {
101         ff_end_tag(pb, wav->data);
102
103         /* update file size */
104         file_size = url_ftell(pb);
105         url_fseek(pb, 4, SEEK_SET);
106         put_le32(pb, (uint32_t)(file_size - 8));
107         url_fseek(pb, file_size, SEEK_SET);
108
109         put_flush_packet(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             url_fseek(pb, wav->data-12, SEEK_SET);
118             put_le32(pb, number_of_samples);
119             url_fseek(pb, file_size, SEEK_SET);
120             put_flush_packet(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(ByteIOContext *pb, unsigned int *tag)
145 {
146     *tag = get_le32(pb);
147     return get_le32(pb);
148 }
149
150 /* return the size of the found tag */
151 static int64_t find_tag(ByteIOContext *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         url_fseek(pb, size, SEEK_CUR);
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     ByteIOContext *pb = s->pb;
196     AVStream *st;
197     WAVContext *wav = s->priv_data;
198
199     /* check RIFF header */
200     tag = get_le32(pb);
201
202     rf64 = tag == MKTAG('R', 'F', '6', '4');
203     if (!rf64 && tag != MKTAG('R', 'I', 'F', 'F'))
204         return -1;
205     get_le32(pb); /* file size */
206     tag = get_le32(pb);
207     if (tag != MKTAG('W', 'A', 'V', 'E'))
208         return -1;
209
210     if (rf64) {
211         if (get_le32(pb) != MKTAG('d', 's', '6', '4'))
212             return -1;
213         size = get_le32(pb);
214         if (size < 16)
215             return -1;
216         get_le64(pb); /* RIFF size */
217         data_size = get_le64(pb);
218         sample_count = get_le64(pb);
219         url_fskip(pb, size - 16); /* skip rest of ds64 chunk */
220     }
221
222     /* parse fmt header */
223     size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
224     if (size < 0)
225         return -1;
226     st = av_new_stream(s, 0);
227     if (!st)
228         return AVERROR(ENOMEM);
229
230     ff_get_wav_header(pb, st->codec, size);
231     st->need_parsing = AVSTREAM_PARSE_FULL;
232
233     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
234
235     for (;;) {
236         if (url_feof(pb))
237             return -1;
238         size = next_tag(pb, &tag);
239         if (tag == MKTAG('d', 'a', 't', 'a')){
240             break;
241         }else if (tag == MKTAG('f','a','c','t') && !sample_count){
242             sample_count = get_le32(pb);
243             size -= 4;
244         }
245         url_fseek(pb, size, SEEK_CUR);
246     }
247     if (rf64)
248         size = data_size;
249     if (size < 0)
250         return -1;
251     if (!size) {
252         wav->data_end = INT64_MAX;
253     } else
254         wav->data_end= url_ftell(pb) + size;
255
256     if (!sample_count && st->codec->channels && av_get_bits_per_sample(st->codec->codec_id))
257         sample_count = (size<<3) / (st->codec->channels * (uint64_t)av_get_bits_per_sample(st->codec->codec_id));
258     if (sample_count)
259         st->duration = sample_count;
260     return 0;
261 }
262
263 /** Find chunk with w64 GUID by skipping over other chunks
264  * @return the size of the found chunk
265  */
266 static int64_t find_guid(ByteIOContext *pb, const uint8_t guid1[16])
267 {
268     uint8_t guid[16];
269     int64_t size;
270
271     while (!url_feof(pb)) {
272         get_buffer(pb, guid, 16);
273         size = get_le64(pb);
274         if (size <= 24)
275             return -1;
276         if (!memcmp(guid, guid1, 16))
277             return size;
278         url_fskip(pb, FFALIGN(size, INT64_C(8)) - 24);
279     }
280     return -1;
281 }
282
283 static const uint8_t guid_data[16] = { 'd', 'a', 't', 'a',
284     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
285
286 #define MAX_SIZE 4096
287
288 static int wav_read_packet(AVFormatContext *s,
289                            AVPacket *pkt)
290 {
291     int ret, size;
292     int64_t left;
293     AVStream *st;
294     WAVContext *wav = s->priv_data;
295
296     st = s->streams[0];
297
298     left = wav->data_end - url_ftell(s->pb);
299     if (left <= 0){
300         if (CONFIG_W64_DEMUXER && wav->w64)
301             left = find_guid(s->pb, guid_data) - 24;
302         else
303             left = find_tag(s->pb, MKTAG('d', 'a', 't', 'a'));
304         if (left < 0)
305             return AVERROR_EOF;
306         wav->data_end= url_ftell(s->pb) + left;
307     }
308
309     size = MAX_SIZE;
310     if (st->codec->block_align > 1) {
311         if (size < st->codec->block_align)
312             size = st->codec->block_align;
313         size = (size / st->codec->block_align) * st->codec->block_align;
314     }
315     size = FFMIN(size, left);
316     ret  = av_get_packet(s->pb, pkt, size);
317     if (ret < 0)
318         return ret;
319     pkt->stream_index = 0;
320
321     return ret;
322 }
323
324 static int wav_read_seek(AVFormatContext *s,
325                          int stream_index, int64_t timestamp, int flags)
326 {
327     AVStream *st;
328
329     st = s->streams[0];
330     switch (st->codec->codec_id) {
331     case CODEC_ID_MP2:
332     case CODEC_ID_MP3:
333     case CODEC_ID_AC3:
334     case CODEC_ID_DTS:
335         /* use generic seeking with dynamically generated indexes */
336         return -1;
337     default:
338         break;
339     }
340     return pcm_read_seek(s, stream_index, timestamp, flags);
341 }
342
343 AVInputFormat ff_wav_demuxer = {
344     "wav",
345     NULL_IF_CONFIG_SMALL("WAV format"),
346     sizeof(WAVContext),
347     wav_probe,
348     wav_read_header,
349     wav_read_packet,
350     NULL,
351     wav_read_seek,
352     .flags= AVFMT_GENERIC_INDEX,
353     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
354 };
355 #endif /* CONFIG_WAV_DEMUXER */
356
357
358 #if CONFIG_W64_DEMUXER
359 static const uint8_t guid_riff[16] = { 'r', 'i', 'f', 'f',
360     0x2E, 0x91, 0xCF, 0x11, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00 };
361
362 static const uint8_t guid_wave[16] = { 'w', 'a', 'v', 'e',
363     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
364
365 static const uint8_t guid_fmt [16] = { 'f', 'm', 't', ' ',
366     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
367
368 static int w64_probe(AVProbeData *p)
369 {
370     if (p->buf_size <= 40)
371         return 0;
372     if (!memcmp(p->buf,      guid_riff, 16) &&
373         !memcmp(p->buf + 24, guid_wave, 16))
374         return AVPROBE_SCORE_MAX;
375     else
376         return 0;
377 }
378
379 static int w64_read_header(AVFormatContext *s, AVFormatParameters *ap)
380 {
381     int64_t size;
382     ByteIOContext *pb  = s->pb;
383     WAVContext    *wav = s->priv_data;
384     AVStream *st;
385     uint8_t guid[16];
386
387     get_buffer(pb, guid, 16);
388     if (memcmp(guid, guid_riff, 16))
389         return -1;
390
391     if (get_le64(pb) < 16 + 8 + 16 + 8 + 16 + 8) /* riff + wave + fmt + sizes */
392         return -1;
393
394     get_buffer(pb, guid, 16);
395     if (memcmp(guid, guid_wave, 16)) {
396         av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
397         return -1;
398     }
399
400     size = find_guid(pb, guid_fmt);
401     if (size < 0) {
402         av_log(s, AV_LOG_ERROR, "could not find fmt guid\n");
403         return -1;
404     }
405
406     st = av_new_stream(s, 0);
407     if (!st)
408         return AVERROR(ENOMEM);
409
410     /* subtract chunk header size - normal wav file doesn't count it */
411     ff_get_wav_header(pb, st->codec, size - 24);
412     url_fskip(pb, FFALIGN(size, INT64_C(8)) - size);
413
414     st->need_parsing = AVSTREAM_PARSE_FULL;
415
416     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
417
418     size = find_guid(pb, guid_data);
419     if (size < 0) {
420         av_log(s, AV_LOG_ERROR, "could not find data guid\n");
421         return -1;
422     }
423     wav->data_end = url_ftell(pb) + size - 24;
424     wav->w64      = 1;
425
426     return 0;
427 }
428
429 AVInputFormat ff_w64_demuxer = {
430     "w64",
431     NULL_IF_CONFIG_SMALL("Sony Wave64 format"),
432     sizeof(WAVContext),
433     w64_probe,
434     w64_read_header,
435     wav_read_packet,
436     NULL,
437     wav_read_seek,
438     .flags = AVFMT_GENERIC_INDEX,
439     .codec_tag = (const AVCodecTag* const []){ff_codec_wav_tags, 0},
440 };
441 #endif /* CONFIG_W64_DEMUXER */