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