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