]> git.sesse.net Git - ffmpeg/blob - libavformat/wavdec.c
avformat/wavdec: add support for demuxing Broadcast Wave 64Bit
[ffmpeg] / libavformat / wavdec.c
1 /*
2  * WAV demuxer
3  * Copyright (c) 2001, 2002 Fabrice Bellard
4  *
5  * Sony Wave64 demuxer
6  * RF64 demuxer
7  * Copyright (c) 2009 Daniel Verkamp
8  *
9  * BW64 demuxer
10  *
11  * This file is part of FFmpeg.
12  *
13  * FFmpeg is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Lesser General Public
15  * License as published by the Free Software Foundation; either
16  * version 2.1 of the License, or (at your option) any later version.
17  *
18  * FFmpeg is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public
24  * License along with FFmpeg; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26  */
27
28 #include <stdint.h>
29
30 #include "libavutil/avassert.h"
31 #include "libavutil/dict.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/log.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/opt.h"
36 #include "avformat.h"
37 #include "avio.h"
38 #include "avio_internal.h"
39 #include "id3v2.h"
40 #include "internal.h"
41 #include "metadata.h"
42 #include "pcm.h"
43 #include "riff.h"
44 #include "w64.h"
45 #include "spdif.h"
46
47 typedef struct WAVDemuxContext {
48     const AVClass *class;
49     int64_t data_end;
50     int w64;
51     int64_t smv_data_ofs;
52     int smv_block_size;
53     int smv_frames_per_jpeg;
54     int smv_block;
55     int smv_last_stream;
56     int smv_eof;
57     int audio_eof;
58     int ignore_length;
59     int spdif;
60     int smv_cur_pt;
61     int smv_given_first;
62     int unaligned; // e.g. if an odd number of bytes ID3 tag was prepended
63     int rifx; // RIFX: integer byte order for parameters is big endian
64 } WAVDemuxContext;
65
66 static void set_spdif(AVFormatContext *s, WAVDemuxContext *wav)
67 {
68     if (CONFIG_SPDIF_DEMUXER && s->streams[0]->codecpar->codec_tag == 1) {
69         enum AVCodecID codec;
70         int len = 1<<16;
71         int ret = ffio_ensure_seekback(s->pb, len);
72
73         if (ret >= 0) {
74             uint8_t *buf = av_malloc(len);
75             if (!buf) {
76                 ret = AVERROR(ENOMEM);
77             } else {
78                 int64_t pos = avio_tell(s->pb);
79                 len = ret = avio_read(s->pb, buf, len);
80                 if (len >= 0) {
81                     ret = ff_spdif_probe(buf, len, &codec);
82                     if (ret > AVPROBE_SCORE_EXTENSION) {
83                         s->streams[0]->codecpar->codec_id = codec;
84                         wav->spdif = 1;
85                     }
86                 }
87                 avio_seek(s->pb, pos, SEEK_SET);
88                 av_free(buf);
89             }
90         }
91
92         if (ret < 0)
93             av_log(s, AV_LOG_WARNING, "Cannot check for SPDIF\n");
94     }
95 }
96
97 #if CONFIG_WAV_DEMUXER
98
99 static int64_t next_tag(AVIOContext *pb, uint32_t *tag, int big_endian)
100 {
101     *tag = avio_rl32(pb);
102     if (!big_endian) {
103         return avio_rl32(pb);
104     } else {
105         return avio_rb32(pb);
106     }
107 }
108
109 /* RIFF chunks are always at even offsets relative to where they start. */
110 static int64_t wav_seek_tag(WAVDemuxContext * wav, AVIOContext *s, int64_t offset, int whence)
111 {
112     offset += offset < INT64_MAX && offset + wav->unaligned & 1;
113
114     return avio_seek(s, offset, whence);
115 }
116
117 /* return the size of the found tag */
118 static int64_t find_tag(WAVDemuxContext * wav, AVIOContext *pb, uint32_t tag1)
119 {
120     unsigned int tag;
121     int64_t size;
122
123     for (;;) {
124         if (avio_feof(pb))
125             return AVERROR_EOF;
126         size = next_tag(pb, &tag, wav->rifx);
127         if (tag == tag1)
128             break;
129         wav_seek_tag(wav, pb, size, SEEK_CUR);
130     }
131     return size;
132 }
133
134 static int wav_probe(const AVProbeData *p)
135 {
136     /* check file header */
137     if (p->buf_size <= 32)
138         return 0;
139     if (!memcmp(p->buf + 8, "WAVE", 4)) {
140         if (!memcmp(p->buf, "RIFF", 4) || !memcmp(p->buf, "RIFX", 4))
141             /* Since the ACT demuxer has a standard WAV header at the top of
142              * its own, the returned score is decreased to avoid a probe
143              * conflict between ACT and WAV. */
144             return AVPROBE_SCORE_MAX - 1;
145         else if ((!memcmp(p->buf,      "RF64", 4) ||
146                   !memcmp(p->buf,      "BW64", 4)) &&
147                  !memcmp(p->buf + 12, "ds64", 4))
148             return AVPROBE_SCORE_MAX;
149     }
150     return 0;
151 }
152
153 static void handle_stream_probing(AVStream *st)
154 {
155     if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S16LE) {
156         st->request_probe = AVPROBE_SCORE_EXTENSION;
157         st->probe_packets = FFMIN(st->probe_packets, 32);
158     }
159 }
160
161 static int wav_parse_fmt_tag(AVFormatContext *s, int64_t size, AVStream **st)
162 {
163     AVIOContext *pb = s->pb;
164     WAVDemuxContext *wav = s->priv_data;
165     int ret;
166
167     /* parse fmt header */
168     *st = avformat_new_stream(s, NULL);
169     if (!*st)
170         return AVERROR(ENOMEM);
171
172     ret = ff_get_wav_header(s, pb, (*st)->codecpar, size, wav->rifx);
173     if (ret < 0)
174         return ret;
175     handle_stream_probing(*st);
176
177     (*st)->need_parsing = AVSTREAM_PARSE_FULL_RAW;
178
179     avpriv_set_pts_info(*st, 64, 1, (*st)->codecpar->sample_rate);
180
181     return 0;
182 }
183
184 static int wav_parse_xma2_tag(AVFormatContext *s, int64_t size, AVStream **st)
185 {
186     AVIOContext *pb = s->pb;
187     int version, num_streams, i, channels = 0, ret;
188
189     if (size < 36)
190         return AVERROR_INVALIDDATA;
191
192     *st = avformat_new_stream(s, NULL);
193     if (!*st)
194         return AVERROR(ENOMEM);
195
196     (*st)->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
197     (*st)->codecpar->codec_id   = AV_CODEC_ID_XMA2;
198     (*st)->need_parsing         = AVSTREAM_PARSE_FULL_RAW;
199
200     version = avio_r8(pb);
201     if (version != 3 && version != 4)
202         return AVERROR_INVALIDDATA;
203     num_streams = avio_r8(pb);
204     if (size != (32 + ((version==3)?0:8) + 4*num_streams))
205         return AVERROR_INVALIDDATA;
206     avio_skip(pb, 10);
207     (*st)->codecpar->sample_rate = avio_rb32(pb);
208     if (version == 4)
209         avio_skip(pb, 8);
210     avio_skip(pb, 4);
211     (*st)->duration = avio_rb32(pb);
212     avio_skip(pb, 8);
213
214     for (i = 0; i < num_streams; i++) {
215         channels += avio_r8(pb);
216         avio_skip(pb, 3);
217     }
218     (*st)->codecpar->channels = channels;
219
220     if ((*st)->codecpar->channels <= 0 || (*st)->codecpar->sample_rate <= 0)
221         return AVERROR_INVALIDDATA;
222
223     avpriv_set_pts_info(*st, 64, 1, (*st)->codecpar->sample_rate);
224
225     avio_seek(pb, -size, SEEK_CUR);
226     if ((ret = ff_get_extradata(s, (*st)->codecpar, pb, size)) < 0)
227         return ret;
228
229     return 0;
230 }
231
232 static inline int wav_parse_bext_string(AVFormatContext *s, const char *key,
233                                         int length)
234 {
235     char temp[257];
236     int ret;
237
238     av_assert0(length < sizeof(temp));
239     if ((ret = avio_read(s->pb, temp, length)) != length)
240         return ret < 0 ? ret : AVERROR_INVALIDDATA;
241
242     temp[length] = 0;
243
244     if (strlen(temp))
245         return av_dict_set(&s->metadata, key, temp, 0);
246
247     return 0;
248 }
249
250 static int wav_parse_bext_tag(AVFormatContext *s, int64_t size)
251 {
252     char temp[131], *coding_history;
253     int ret, x;
254     uint64_t time_reference;
255     int64_t umid_parts[8], umid_mask = 0;
256
257     if ((ret = wav_parse_bext_string(s, "description", 256)) < 0 ||
258         (ret = wav_parse_bext_string(s, "originator", 32)) < 0 ||
259         (ret = wav_parse_bext_string(s, "originator_reference", 32)) < 0 ||
260         (ret = wav_parse_bext_string(s, "origination_date", 10)) < 0 ||
261         (ret = wav_parse_bext_string(s, "origination_time", 8)) < 0)
262         return ret;
263
264     time_reference = avio_rl64(s->pb);
265     snprintf(temp, sizeof(temp), "%"PRIu64, time_reference);
266     if ((ret = av_dict_set(&s->metadata, "time_reference", temp, 0)) < 0)
267         return ret;
268
269     /* check if version is >= 1, in which case an UMID may be present */
270     if (avio_rl16(s->pb) >= 1) {
271         for (x = 0; x < 8; x++)
272             umid_mask |= umid_parts[x] = avio_rb64(s->pb);
273
274         if (umid_mask) {
275             /* the string formatting below is per SMPTE 330M-2004 Annex C */
276             if (umid_parts[4] == 0 && umid_parts[5] == 0 &&
277                 umid_parts[6] == 0 && umid_parts[7] == 0) {
278                 /* basic UMID */
279                 snprintf(temp, sizeof(temp),
280                          "0x%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64,
281                          umid_parts[0], umid_parts[1],
282                          umid_parts[2], umid_parts[3]);
283             } else {
284                 /* extended UMID */
285                 snprintf(temp, sizeof(temp),
286                          "0x%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64
287                          "%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64,
288                          umid_parts[0], umid_parts[1],
289                          umid_parts[2], umid_parts[3],
290                          umid_parts[4], umid_parts[5],
291                          umid_parts[6], umid_parts[7]);
292             }
293
294             if ((ret = av_dict_set(&s->metadata, "umid", temp, 0)) < 0)
295                 return ret;
296         }
297
298         avio_skip(s->pb, 190);
299     } else
300         avio_skip(s->pb, 254);
301
302     if (size > 602) {
303         /* CodingHistory present */
304         size -= 602;
305
306         if (!(coding_history = av_malloc(size + 1)))
307             return AVERROR(ENOMEM);
308
309         if ((ret = avio_read(s->pb, coding_history, size)) != size) {
310             av_free(coding_history);
311             return ret < 0 ? ret : AVERROR_INVALIDDATA;
312         }
313
314         coding_history[size] = 0;
315         if ((ret = av_dict_set(&s->metadata, "coding_history", coding_history,
316                                AV_DICT_DONT_STRDUP_VAL)) < 0)
317             return ret;
318     }
319
320     return 0;
321 }
322
323 static const AVMetadataConv wav_metadata_conv[] = {
324     { "description",      "comment"       },
325     { "originator",       "encoded_by"    },
326     { "origination_date", "date"          },
327     { "origination_time", "creation_time" },
328     { 0 },
329 };
330
331 /* wav input */
332 static int wav_read_header(AVFormatContext *s)
333 {
334     int64_t size, av_uninit(data_size);
335     int64_t sample_count = 0;
336     int rf64 = 0, bw64 = 0;
337     uint32_t tag;
338     AVIOContext *pb      = s->pb;
339     AVStream *st         = NULL;
340     WAVDemuxContext *wav = s->priv_data;
341     int ret, got_fmt = 0, got_xma2 = 0;
342     int64_t next_tag_ofs, data_ofs = -1;
343
344     wav->unaligned = avio_tell(s->pb) & 1;
345
346     wav->smv_data_ofs = -1;
347
348     /* read chunk ID */
349     tag = avio_rl32(pb);
350     switch (tag) {
351     case MKTAG('R', 'I', 'F', 'F'):
352         break;
353     case MKTAG('R', 'I', 'F', 'X'):
354         wav->rifx = 1;
355         break;
356     case MKTAG('R', 'F', '6', '4'):
357         rf64 = 1;
358         break;
359     case MKTAG('B', 'W', '6', '4'):
360         bw64 = 1;
361         break;
362     default:
363         av_log(s, AV_LOG_ERROR, "invalid start code %s in RIFF header\n",
364                av_fourcc2str(tag));
365         return AVERROR_INVALIDDATA;
366     }
367
368     /* read chunk size */
369     avio_rl32(pb);
370
371     /* read format */
372     if (avio_rl32(pb) != MKTAG('W', 'A', 'V', 'E')) {
373         av_log(s, AV_LOG_ERROR, "invalid format in RIFF header\n");
374         return AVERROR_INVALIDDATA;
375     }
376
377     if (rf64 || bw64) {
378         if (avio_rl32(pb) != MKTAG('d', 's', '6', '4'))
379             return AVERROR_INVALIDDATA;
380         size = avio_rl32(pb);
381         if (size < 24)
382             return AVERROR_INVALIDDATA;
383         avio_rl64(pb); /* RIFF size */
384
385         data_size    = avio_rl64(pb);
386         sample_count = avio_rl64(pb);
387
388         if (data_size < 0 || sample_count < 0) {
389             av_log(s, AV_LOG_ERROR, "negative data_size and/or sample_count in "
390                    "ds64: data_size = %"PRId64", sample_count = %"PRId64"\n",
391                    data_size, sample_count);
392             return AVERROR_INVALIDDATA;
393         }
394         avio_skip(pb, size - 24); /* skip rest of ds64 chunk */
395
396     }
397
398     for (;;) {
399         AVStream *vst;
400         size         = next_tag(pb, &tag, wav->rifx);
401         next_tag_ofs = avio_tell(pb) + size;
402
403         if (avio_feof(pb))
404             break;
405
406         switch (tag) {
407         case MKTAG('f', 'm', 't', ' '):
408             /* only parse the first 'fmt ' tag found */
409             if (!got_xma2 && !got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
410                 return ret;
411             } else if (got_fmt)
412                 av_log(s, AV_LOG_WARNING, "found more than one 'fmt ' tag\n");
413
414             got_fmt = 1;
415             break;
416         case MKTAG('X', 'M', 'A', '2'):
417             /* only parse the first 'XMA2' tag found */
418             if (!got_fmt && !got_xma2 && (ret = wav_parse_xma2_tag(s, size, &st)) < 0) {
419                 return ret;
420             } else if (got_xma2)
421                 av_log(s, AV_LOG_WARNING, "found more than one 'XMA2' tag\n");
422
423             got_xma2 = 1;
424             break;
425         case MKTAG('d', 'a', 't', 'a'):
426             if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) && !got_fmt && !got_xma2) {
427                 av_log(s, AV_LOG_ERROR,
428                        "found no 'fmt ' tag before the 'data' tag\n");
429                 return AVERROR_INVALIDDATA;
430             }
431
432             if (rf64 || bw64) {
433                 next_tag_ofs = wav->data_end = avio_tell(pb) + data_size;
434             } else if (size != 0xFFFFFFFF) {
435                 data_size    = size;
436                 next_tag_ofs = wav->data_end = size ? next_tag_ofs : INT64_MAX;
437             } else {
438                 av_log(s, AV_LOG_WARNING, "Ignoring maximum wav data size, "
439                        "file may be invalid\n");
440                 data_size    = 0;
441                 next_tag_ofs = wav->data_end = INT64_MAX;
442             }
443
444             data_ofs = avio_tell(pb);
445
446             /* don't look for footer metadata if we can't seek or if we don't
447              * know where the data tag ends
448              */
449             if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) || (!(rf64 && !bw64) && !size))
450                 goto break_loop;
451             break;
452         case MKTAG('f', 'a', 'c', 't'):
453             if (!sample_count)
454                 sample_count = (!wav->rifx ? avio_rl32(pb) : avio_rb32(pb));
455             break;
456         case MKTAG('b', 'e', 'x', 't'):
457             if ((ret = wav_parse_bext_tag(s, size)) < 0)
458                 return ret;
459             break;
460         case MKTAG('S','M','V','0'):
461             if (!got_fmt) {
462                 av_log(s, AV_LOG_ERROR, "found no 'fmt ' tag before the 'SMV0' tag\n");
463                 return AVERROR_INVALIDDATA;
464             }
465             // SMV file, a wav file with video appended.
466             if (size != MKTAG('0','2','0','0')) {
467                 av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n");
468                 goto break_loop;
469             }
470             av_log(s, AV_LOG_DEBUG, "Found SMV data\n");
471             wav->smv_given_first = 0;
472             vst = avformat_new_stream(s, NULL);
473             if (!vst)
474                 return AVERROR(ENOMEM);
475             avio_r8(pb);
476             vst->id = 1;
477             vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
478             vst->codecpar->codec_id = AV_CODEC_ID_SMVJPEG;
479             vst->codecpar->width  = avio_rl24(pb);
480             vst->codecpar->height = avio_rl24(pb);
481             if ((ret = ff_alloc_extradata(vst->codecpar, 4)) < 0) {
482                 av_log(s, AV_LOG_ERROR, "Could not allocate extradata.\n");
483                 return ret;
484             }
485             size = avio_rl24(pb);
486             wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
487             avio_rl24(pb);
488             wav->smv_block_size = avio_rl24(pb);
489             avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
490             vst->duration = avio_rl24(pb);
491             avio_rl24(pb);
492             avio_rl24(pb);
493             wav->smv_frames_per_jpeg = avio_rl24(pb);
494             if (wav->smv_frames_per_jpeg > 65536) {
495                 av_log(s, AV_LOG_ERROR, "too many frames per jpeg\n");
496                 return AVERROR_INVALIDDATA;
497             }
498             AV_WL32(vst->codecpar->extradata, wav->smv_frames_per_jpeg);
499             wav->smv_cur_pt = 0;
500             goto break_loop;
501         case MKTAG('L', 'I', 'S', 'T'):
502             if (size < 4) {
503                 av_log(s, AV_LOG_ERROR, "too short LIST tag\n");
504                 return AVERROR_INVALIDDATA;
505             }
506             switch (avio_rl32(pb)) {
507             case MKTAG('I', 'N', 'F', 'O'):
508                 ff_read_riff_info(s, size - 4);
509             }
510             break;
511         case MKTAG('I', 'D', '3', ' '):
512         case MKTAG('i', 'd', '3', ' '): {
513             ID3v2ExtraMeta *id3v2_extra_meta = NULL;
514             ff_id3v2_read_dict(pb, &s->internal->id3v2_meta, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta);
515             if (id3v2_extra_meta) {
516                 ff_id3v2_parse_apic(s, id3v2_extra_meta);
517                 ff_id3v2_parse_chapters(s, id3v2_extra_meta);
518                 ff_id3v2_parse_priv(s, id3v2_extra_meta);
519             }
520             ff_id3v2_free_extra_meta(&id3v2_extra_meta);
521             }
522             break;
523         }
524
525         /* seek to next tag unless we know that we'll run into EOF */
526         if ((avio_size(pb) > 0 && next_tag_ofs >= avio_size(pb)) ||
527             wav_seek_tag(wav, pb, next_tag_ofs, SEEK_SET) < 0) {
528             break;
529         }
530     }
531
532 break_loop:
533     if (!got_fmt && !got_xma2) {
534         av_log(s, AV_LOG_ERROR, "no 'fmt ' or 'XMA2' tag found\n");
535         return AVERROR_INVALIDDATA;
536     }
537
538     if (data_ofs < 0) {
539         av_log(s, AV_LOG_ERROR, "no 'data' tag found\n");
540         return AVERROR_INVALIDDATA;
541     }
542
543     avio_seek(pb, data_ofs, SEEK_SET);
544
545     if (data_size > (INT64_MAX>>3)) {
546         av_log(s, AV_LOG_WARNING, "Data size %"PRId64" is too large\n", data_size);
547         data_size = 0;
548     }
549
550     if (   st->codecpar->bit_rate > 0 && data_size > 0
551         && st->codecpar->sample_rate > 0
552         && sample_count > 0 && st->codecpar->channels > 1
553         && sample_count % st->codecpar->channels == 0) {
554         if (fabs(8.0 * data_size * st->codecpar->channels * st->codecpar->sample_rate /
555             sample_count /st->codecpar->bit_rate - 1.0) < 0.3)
556             sample_count /= st->codecpar->channels;
557     }
558
559     if (   data_size > 0 && sample_count && st->codecpar->channels
560         && (data_size << 3) / sample_count / st->codecpar->channels > st->codecpar->bits_per_coded_sample  + 1) {
561         av_log(s, AV_LOG_WARNING, "ignoring wrong sample_count %"PRId64"\n", sample_count);
562         sample_count = 0;
563     }
564
565     /* G.729 hack (for Ticket4577)
566      * FIXME: Come up with cleaner, more general solution */
567     if (st->codecpar->codec_id == AV_CODEC_ID_G729 && sample_count && (data_size << 3) > sample_count) {
568         av_log(s, AV_LOG_WARNING, "ignoring wrong sample_count %"PRId64"\n", sample_count);
569         sample_count = 0;
570     }
571
572     if (!sample_count || av_get_exact_bits_per_sample(st->codecpar->codec_id) > 0)
573         if (   st->codecpar->channels
574             && data_size
575             && av_get_bits_per_sample(st->codecpar->codec_id)
576             && wav->data_end <= avio_size(pb))
577             sample_count = (data_size << 3)
578                                   /
579                 (st->codecpar->channels * (uint64_t)av_get_bits_per_sample(st->codecpar->codec_id));
580
581     if (sample_count)
582         st->duration = sample_count;
583
584     if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S32LE &&
585         st->codecpar->block_align == st->codecpar->channels * 4 &&
586         st->codecpar->bits_per_coded_sample == 32 &&
587         st->codecpar->extradata_size == 2 &&
588         AV_RL16(st->codecpar->extradata) == 1) {
589         st->codecpar->codec_id = AV_CODEC_ID_PCM_F16LE;
590         st->codecpar->bits_per_coded_sample = 16;
591     } else if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S24LE &&
592                st->codecpar->block_align == st->codecpar->channels * 4 &&
593                st->codecpar->bits_per_coded_sample == 24) {
594         st->codecpar->codec_id = AV_CODEC_ID_PCM_F24LE;
595     } else if (st->codecpar->codec_id == AV_CODEC_ID_XMA1 ||
596                st->codecpar->codec_id == AV_CODEC_ID_XMA2) {
597         st->codecpar->block_align = 2048;
598     } else if (st->codecpar->codec_id == AV_CODEC_ID_ADPCM_MS && st->codecpar->channels > 2) {
599         st->codecpar->block_align *= st->codecpar->channels;
600     }
601
602     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
603     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
604
605     set_spdif(s, wav);
606
607     return 0;
608 }
609
610 /**
611  * Find chunk with w64 GUID by skipping over other chunks.
612  * @return the size of the found chunk
613  */
614 static int64_t find_guid(AVIOContext *pb, const uint8_t guid1[16])
615 {
616     uint8_t guid[16];
617     int64_t size;
618
619     while (!avio_feof(pb)) {
620         avio_read(pb, guid, 16);
621         size = avio_rl64(pb);
622         if (size <= 24)
623             return AVERROR_INVALIDDATA;
624         if (!memcmp(guid, guid1, 16))
625             return size;
626         avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
627     }
628     return AVERROR_EOF;
629 }
630
631 #define MAX_SIZE 4096
632
633 static int wav_read_packet(AVFormatContext *s, AVPacket *pkt)
634 {
635     int ret, size;
636     int64_t left;
637     AVStream *st;
638     WAVDemuxContext *wav = s->priv_data;
639
640     if (CONFIG_SPDIF_DEMUXER && wav->spdif == 1)
641         return ff_spdif_read_packet(s, pkt);
642
643     if (wav->smv_data_ofs > 0) {
644         int64_t audio_dts, video_dts;
645 smv_retry:
646         audio_dts = (int32_t)s->streams[0]->cur_dts;
647         video_dts = (int32_t)s->streams[1]->cur_dts;
648
649         if (audio_dts != AV_NOPTS_VALUE && video_dts != AV_NOPTS_VALUE) {
650             /*We always return a video frame first to get the pixel format first*/
651             wav->smv_last_stream = wav->smv_given_first ?
652                 av_compare_ts(video_dts, s->streams[1]->time_base,
653                               audio_dts, s->streams[0]->time_base) > 0 : 0;
654             wav->smv_given_first = 1;
655         }
656         wav->smv_last_stream = !wav->smv_last_stream;
657         wav->smv_last_stream |= wav->audio_eof;
658         wav->smv_last_stream &= !wav->smv_eof;
659         if (wav->smv_last_stream) {
660             uint64_t old_pos = avio_tell(s->pb);
661             uint64_t new_pos = wav->smv_data_ofs +
662                 wav->smv_block * wav->smv_block_size;
663             if (avio_seek(s->pb, new_pos, SEEK_SET) < 0) {
664                 ret = AVERROR_EOF;
665                 goto smv_out;
666             }
667             size = avio_rl24(s->pb);
668             ret  = av_get_packet(s->pb, pkt, size);
669             if (ret < 0)
670                 goto smv_out;
671             pkt->pos -= 3;
672             pkt->pts = wav->smv_block * wav->smv_frames_per_jpeg + wav->smv_cur_pt;
673             wav->smv_cur_pt++;
674             if (wav->smv_frames_per_jpeg > 0)
675                 wav->smv_cur_pt %= wav->smv_frames_per_jpeg;
676             if (!wav->smv_cur_pt)
677                 wav->smv_block++;
678
679             pkt->stream_index = 1;
680 smv_out:
681             avio_seek(s->pb, old_pos, SEEK_SET);
682             if (ret == AVERROR_EOF) {
683                 wav->smv_eof = 1;
684                 goto smv_retry;
685             }
686             return ret;
687         }
688     }
689
690     st = s->streams[0];
691
692     left = wav->data_end - avio_tell(s->pb);
693     if (wav->ignore_length)
694         left = INT_MAX;
695     if (left <= 0) {
696         if (CONFIG_W64_DEMUXER && wav->w64)
697             left = find_guid(s->pb, ff_w64_guid_data) - 24;
698         else
699             left = find_tag(wav, s->pb, MKTAG('d', 'a', 't', 'a'));
700         if (left < 0) {
701             wav->audio_eof = 1;
702             if (wav->smv_data_ofs > 0 && !wav->smv_eof)
703                 goto smv_retry;
704             return AVERROR_EOF;
705         }
706         wav->data_end = avio_tell(s->pb) + left;
707     }
708
709     size = MAX_SIZE;
710     if (st->codecpar->block_align > 1) {
711         if (size < st->codecpar->block_align)
712             size = st->codecpar->block_align;
713         size = (size / st->codecpar->block_align) * st->codecpar->block_align;
714     }
715     size = FFMIN(size, left);
716     ret  = av_get_packet(s->pb, pkt, size);
717     if (ret < 0)
718         return ret;
719     pkt->stream_index = 0;
720
721     return ret;
722 }
723
724 static int wav_read_seek(AVFormatContext *s,
725                          int stream_index, int64_t timestamp, int flags)
726 {
727     WAVDemuxContext *wav = s->priv_data;
728     AVStream *st;
729     wav->smv_eof = 0;
730     wav->audio_eof = 0;
731     if (wav->smv_data_ofs > 0) {
732         int64_t smv_timestamp = timestamp;
733         if (stream_index == 0)
734             smv_timestamp = av_rescale_q(timestamp, s->streams[0]->time_base, s->streams[1]->time_base);
735         else
736             timestamp = av_rescale_q(smv_timestamp, s->streams[1]->time_base, s->streams[0]->time_base);
737         if (wav->smv_frames_per_jpeg > 0) {
738             wav->smv_block = smv_timestamp / wav->smv_frames_per_jpeg;
739             wav->smv_cur_pt = smv_timestamp % wav->smv_frames_per_jpeg;
740         }
741     }
742
743     st = s->streams[0];
744     switch (st->codecpar->codec_id) {
745     case AV_CODEC_ID_MP2:
746     case AV_CODEC_ID_MP3:
747     case AV_CODEC_ID_AC3:
748     case AV_CODEC_ID_DTS:
749     case AV_CODEC_ID_XMA2:
750         /* use generic seeking with dynamically generated indexes */
751         return -1;
752     default:
753         break;
754     }
755     return ff_pcm_read_seek(s, stream_index, timestamp, flags);
756 }
757
758 #define OFFSET(x) offsetof(WAVDemuxContext, x)
759 #define DEC AV_OPT_FLAG_DECODING_PARAM
760 static const AVOption demux_options[] = {
761     { "ignore_length", "Ignore length", OFFSET(ignore_length), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, DEC },
762     { NULL },
763 };
764
765 static const AVClass wav_demuxer_class = {
766     .class_name = "WAV demuxer",
767     .item_name  = av_default_item_name,
768     .option     = demux_options,
769     .version    = LIBAVUTIL_VERSION_INT,
770 };
771 AVInputFormat ff_wav_demuxer = {
772     .name           = "wav",
773     .long_name      = NULL_IF_CONFIG_SMALL("WAV / WAVE (Waveform Audio)"),
774     .priv_data_size = sizeof(WAVDemuxContext),
775     .read_probe     = wav_probe,
776     .read_header    = wav_read_header,
777     .read_packet    = wav_read_packet,
778     .read_seek      = wav_read_seek,
779     .flags          = AVFMT_GENERIC_INDEX,
780     .codec_tag      = (const AVCodecTag * const []) { ff_codec_wav_tags,  0 },
781     .priv_class     = &wav_demuxer_class,
782 };
783 #endif /* CONFIG_WAV_DEMUXER */
784
785 #if CONFIG_W64_DEMUXER
786 static int w64_probe(const AVProbeData *p)
787 {
788     if (p->buf_size <= 40)
789         return 0;
790     if (!memcmp(p->buf,      ff_w64_guid_riff, 16) &&
791         !memcmp(p->buf + 24, ff_w64_guid_wave, 16))
792         return AVPROBE_SCORE_MAX;
793     else
794         return 0;
795 }
796
797 static int w64_read_header(AVFormatContext *s)
798 {
799     int64_t size, data_ofs = 0;
800     AVIOContext *pb      = s->pb;
801     WAVDemuxContext *wav = s->priv_data;
802     AVStream *st;
803     uint8_t guid[16];
804     int ret;
805
806     avio_read(pb, guid, 16);
807     if (memcmp(guid, ff_w64_guid_riff, 16))
808         return AVERROR_INVALIDDATA;
809
810     /* riff + wave + fmt + sizes */
811     if (avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8)
812         return AVERROR_INVALIDDATA;
813
814     avio_read(pb, guid, 16);
815     if (memcmp(guid, ff_w64_guid_wave, 16)) {
816         av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
817         return AVERROR_INVALIDDATA;
818     }
819
820     wav->w64 = 1;
821
822     st = avformat_new_stream(s, NULL);
823     if (!st)
824         return AVERROR(ENOMEM);
825
826     while (!avio_feof(pb)) {
827         if (avio_read(pb, guid, 16) != 16)
828             break;
829         size = avio_rl64(pb);
830         if (size <= 24 || INT64_MAX - size < avio_tell(pb))
831             return AVERROR_INVALIDDATA;
832
833         if (!memcmp(guid, ff_w64_guid_fmt, 16)) {
834             /* subtract chunk header size - normal wav file doesn't count it */
835             ret = ff_get_wav_header(s, pb, st->codecpar, size - 24, 0);
836             if (ret < 0)
837                 return ret;
838             avio_skip(pb, FFALIGN(size, INT64_C(8)) - size);
839
840             avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
841         } else if (!memcmp(guid, ff_w64_guid_fact, 16)) {
842             int64_t samples;
843
844             samples = avio_rl64(pb);
845             if (samples > 0)
846                 st->duration = samples;
847             avio_skip(pb, FFALIGN(size, INT64_C(8)) - 32);
848         } else if (!memcmp(guid, ff_w64_guid_data, 16)) {
849             wav->data_end = avio_tell(pb) + size - 24;
850
851             data_ofs = avio_tell(pb);
852             if (!(pb->seekable & AVIO_SEEKABLE_NORMAL))
853                 break;
854
855             avio_skip(pb, size - 24);
856         } else if (!memcmp(guid, ff_w64_guid_summarylist, 16)) {
857             int64_t start, end, cur;
858             uint32_t count, chunk_size, i;
859
860             start = avio_tell(pb);
861             end = start + FFALIGN(size, INT64_C(8)) - 24;
862             count = avio_rl32(pb);
863
864             for (i = 0; i < count; i++) {
865                 char chunk_key[5], *value;
866
867                 if (avio_feof(pb) || (cur = avio_tell(pb)) < 0 || cur > end - 8 /* = tag + size */)
868                     break;
869
870                 chunk_key[4] = 0;
871                 avio_read(pb, chunk_key, 4);
872                 chunk_size = avio_rl32(pb);
873                 if (chunk_size == UINT32_MAX)
874                     return AVERROR_INVALIDDATA;
875
876                 value = av_mallocz(chunk_size + 1);
877                 if (!value)
878                     return AVERROR(ENOMEM);
879
880                 ret = avio_get_str16le(pb, chunk_size, value, chunk_size);
881                 avio_skip(pb, chunk_size - ret);
882
883                 av_dict_set(&s->metadata, chunk_key, value, AV_DICT_DONT_STRDUP_VAL);
884             }
885
886             avio_skip(pb, end - avio_tell(pb));
887         } else {
888             av_log(s, AV_LOG_DEBUG, "unknown guid: "FF_PRI_GUID"\n", FF_ARG_GUID(guid));
889             avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
890         }
891     }
892
893     if (!data_ofs)
894         return AVERROR_EOF;
895
896     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
897     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
898
899     handle_stream_probing(st);
900     st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
901
902     avio_seek(pb, data_ofs, SEEK_SET);
903
904     set_spdif(s, wav);
905
906     return 0;
907 }
908
909 AVInputFormat ff_w64_demuxer = {
910     .name           = "w64",
911     .long_name      = NULL_IF_CONFIG_SMALL("Sony Wave64"),
912     .priv_data_size = sizeof(WAVDemuxContext),
913     .read_probe     = w64_probe,
914     .read_header    = w64_read_header,
915     .read_packet    = wav_read_packet,
916     .read_seek      = wav_read_seek,
917     .flags          = AVFMT_GENERIC_INDEX,
918     .codec_tag      = (const AVCodecTag * const []) { ff_codec_wav_tags, 0 },
919 };
920 #endif /* CONFIG_W64_DEMUXER */