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