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