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