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