FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wavdec.c
Go to the documentation of this file.
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;
51  int smv_block;
53  int smv_eof;
54  int audio_eof;
56  int spdif;
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
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) {
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,
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 = 0;
252  char start_code[32];
253  uint32_t tag;
254  AVIOContext *pb = s->pb;
255  AVStream *st = NULL;
256  WAVDemuxContext *wav = s->priv_data;
257  int ret, got_fmt = 0;
258  int64_t next_tag_ofs, data_ofs = -1;
259 
260  wav->unaligned = avio_tell(s->pb) & 1;
261 
262  wav->smv_data_ofs = -1;
263 
264  /* read chunk ID */
265  tag = avio_rl32(pb);
266  switch (tag) {
267  case MKTAG('R', 'I', 'F', 'F'):
268  break;
269  case MKTAG('R', 'I', 'F', 'X'):
270  wav->rifx = 1;
271  break;
272  case MKTAG('R', 'F', '6', '4'):
273  rf64 = 1;
274  break;
275  default:
276  av_get_codec_tag_string(start_code, sizeof(start_code), tag);
277  av_log(s, AV_LOG_ERROR, "invalid start code %s in RIFF header\n", start_code);
278  return AVERROR_INVALIDDATA;
279  }
280 
281  /* read chunk size */
282  avio_rl32(pb);
283 
284  /* read format */
285  if (avio_rl32(pb) != MKTAG('W', 'A', 'V', 'E')) {
286  av_log(s, AV_LOG_ERROR, "invalid format in RIFF header\n");
287  return AVERROR_INVALIDDATA;
288  }
289 
290  if (rf64) {
291  if (avio_rl32(pb) != MKTAG('d', 's', '6', '4'))
292  return AVERROR_INVALIDDATA;
293  size = avio_rl32(pb);
294  if (size < 24)
295  return AVERROR_INVALIDDATA;
296  avio_rl64(pb); /* RIFF size */
297 
298  data_size = avio_rl64(pb);
299  sample_count = avio_rl64(pb);
300 
301  if (data_size < 0 || sample_count < 0) {
302  av_log(s, AV_LOG_ERROR, "negative data_size and/or sample_count in "
303  "ds64: data_size = %"PRId64", sample_count = %"PRId64"\n",
304  data_size, sample_count);
305  return AVERROR_INVALIDDATA;
306  }
307  avio_skip(pb, size - 24); /* skip rest of ds64 chunk */
308 
309  }
310 
311  for (;;) {
312  AVStream *vst;
313  size = next_tag(pb, &tag, wav->rifx);
314  next_tag_ofs = avio_tell(pb) + size;
315 
316  if (avio_feof(pb))
317  break;
318 
319  switch (tag) {
320  case MKTAG('f', 'm', 't', ' '):
321  /* only parse the first 'fmt ' tag found */
322  if (!got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
323  return ret;
324  } else if (got_fmt)
325  av_log(s, AV_LOG_WARNING, "found more than one 'fmt ' tag\n");
326 
327  got_fmt = 1;
328  break;
329  case MKTAG('d', 'a', 't', 'a'):
330  if (!got_fmt) {
331  av_log(s, AV_LOG_ERROR,
332  "found no 'fmt ' tag before the 'data' tag\n");
333  return AVERROR_INVALIDDATA;
334  }
335 
336  if (rf64) {
337  next_tag_ofs = wav->data_end = avio_tell(pb) + data_size;
338  } else {
339  data_size = size;
340  next_tag_ofs = wav->data_end = size ? next_tag_ofs : INT64_MAX;
341  }
342 
343  data_ofs = avio_tell(pb);
344 
345  /* don't look for footer metadata if we can't seek or if we don't
346  * know where the data tag ends
347  */
348  if (!pb->seekable || (!rf64 && !size))
349  goto break_loop;
350  break;
351  case MKTAG('f', 'a', 'c', 't'):
352  if (!sample_count)
353  sample_count = (!wav->rifx ? avio_rl32(pb) : avio_rb32(pb));
354  break;
355  case MKTAG('b', 'e', 'x', 't'):
356  if ((ret = wav_parse_bext_tag(s, size)) < 0)
357  return ret;
358  break;
359  case MKTAG('S','M','V','0'):
360  if (!got_fmt) {
361  av_log(s, AV_LOG_ERROR, "found no 'fmt ' tag before the 'SMV0' tag\n");
362  return AVERROR_INVALIDDATA;
363  }
364  // SMV file, a wav file with video appended.
365  if (size != MKTAG('0','2','0','0')) {
366  av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n");
367  goto break_loop;
368  }
369  av_log(s, AV_LOG_DEBUG, "Found SMV data\n");
370  wav->smv_given_first = 0;
371  vst = avformat_new_stream(s, NULL);
372  if (!vst)
373  return AVERROR(ENOMEM);
374  avio_r8(pb);
375  vst->id = 1;
378  vst->codec->width = avio_rl24(pb);
379  vst->codec->height = avio_rl24(pb);
380  if (ff_alloc_extradata(vst->codec, 4)) {
381  av_log(s, AV_LOG_ERROR, "Could not allocate extradata.\n");
382  return AVERROR(ENOMEM);
383  }
384  size = avio_rl24(pb);
385  wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
386  avio_rl24(pb);
387  wav->smv_block_size = avio_rl24(pb);
388  avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
389  vst->duration = avio_rl24(pb);
390  avio_rl24(pb);
391  avio_rl24(pb);
392  wav->smv_frames_per_jpeg = avio_rl24(pb);
393  if (wav->smv_frames_per_jpeg > 65536) {
394  av_log(s, AV_LOG_ERROR, "too many frames per jpeg\n");
395  return AVERROR_INVALIDDATA;
396  }
398  wav->smv_cur_pt = 0;
399  goto break_loop;
400  case MKTAG('L', 'I', 'S', 'T'):
401  if (size < 4) {
402  av_log(s, AV_LOG_ERROR, "too short LIST tag\n");
403  return AVERROR_INVALIDDATA;
404  }
405  switch (avio_rl32(pb)) {
406  case MKTAG('I', 'N', 'F', 'O'):
407  ff_read_riff_info(s, size - 4);
408  }
409  break;
410  }
411 
412  /* seek to next tag unless we know that we'll run into EOF */
413  if ((avio_size(pb) > 0 && next_tag_ofs >= avio_size(pb)) ||
414  wav_seek_tag(wav, pb, next_tag_ofs, SEEK_SET) < 0) {
415  break;
416  }
417  }
418 
419 break_loop:
420  if (data_ofs < 0) {
421  av_log(s, AV_LOG_ERROR, "no 'data' tag found\n");
422  return AVERROR_INVALIDDATA;
423  }
424 
425  avio_seek(pb, data_ofs, SEEK_SET);
426 
427  if ( data_size > 0 && sample_count && st->codec->channels
428  && data_size / sample_count / st->codec->channels > 8) {
429  av_log(s, AV_LOG_WARNING, "ignoring wrong sample_count %"PRId64"\n", sample_count);
430  sample_count = 0;
431  }
432 
433  if (!sample_count || av_get_exact_bits_per_sample(st->codec->codec_id) > 0)
434  if ( st->codec->channels
435  && data_size
437  && wav->data_end <= avio_size(pb))
438  sample_count = (data_size << 3)
439  /
440  (st->codec->channels * (uint64_t)av_get_bits_per_sample(st->codec->codec_id));
441 
442  if (sample_count)
443  st->duration = sample_count;
444 
445  ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
447 
448  return 0;
449 }
450 
451 /**
452  * Find chunk with w64 GUID by skipping over other chunks.
453  * @return the size of the found chunk
454  */
455 static int64_t find_guid(AVIOContext *pb, const uint8_t guid1[16])
456 {
457  uint8_t guid[16];
458  int64_t size;
459 
460  while (!avio_feof(pb)) {
461  avio_read(pb, guid, 16);
462  size = avio_rl64(pb);
463  if (size <= 24)
464  return AVERROR_INVALIDDATA;
465  if (!memcmp(guid, guid1, 16))
466  return size;
467  avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
468  }
469  return AVERROR_EOF;
470 }
471 
472 #define MAX_SIZE 4096
473 
474 static int wav_read_packet(AVFormatContext *s, AVPacket *pkt)
475 {
476  int ret, size;
477  int64_t left;
478  AVStream *st;
479  WAVDemuxContext *wav = s->priv_data;
480 
481  if (CONFIG_SPDIF_DEMUXER && wav->spdif == 0 &&
482  s->streams[0]->codec->codec_tag == 1) {
483  enum AVCodecID codec;
484  ret = ff_spdif_probe(s->pb->buffer, s->pb->buf_end - s->pb->buffer,
485  &codec);
486  if (ret > AVPROBE_SCORE_EXTENSION) {
487  s->streams[0]->codec->codec_id = codec;
488  wav->spdif = 1;
489  } else {
490  wav->spdif = -1;
491  }
492  }
493  if (CONFIG_SPDIF_DEMUXER && wav->spdif == 1)
494  return ff_spdif_read_packet(s, pkt);
495 
496  if (wav->smv_data_ofs > 0) {
497  int64_t audio_dts, video_dts;
498 smv_retry:
499  audio_dts = (int32_t)s->streams[0]->cur_dts;
500  video_dts = (int32_t)s->streams[1]->cur_dts;
501 
502  if (audio_dts != AV_NOPTS_VALUE && video_dts != AV_NOPTS_VALUE) {
503  /*We always return a video frame first to get the pixel format first*/
504  wav->smv_last_stream = wav->smv_given_first ?
505  av_compare_ts(video_dts, s->streams[1]->time_base,
506  audio_dts, s->streams[0]->time_base) > 0 : 0;
507  wav->smv_given_first = 1;
508  }
509  wav->smv_last_stream = !wav->smv_last_stream;
510  wav->smv_last_stream |= wav->audio_eof;
511  wav->smv_last_stream &= !wav->smv_eof;
512  if (wav->smv_last_stream) {
513  uint64_t old_pos = avio_tell(s->pb);
514  uint64_t new_pos = wav->smv_data_ofs +
515  wav->smv_block * wav->smv_block_size;
516  if (avio_seek(s->pb, new_pos, SEEK_SET) < 0) {
517  ret = AVERROR_EOF;
518  goto smv_out;
519  }
520  size = avio_rl24(s->pb);
521  ret = av_get_packet(s->pb, pkt, size);
522  if (ret < 0)
523  goto smv_out;
524  pkt->pos -= 3;
525  pkt->pts = wav->smv_block * wav->smv_frames_per_jpeg + wav->smv_cur_pt;
526  wav->smv_cur_pt++;
527  if (wav->smv_frames_per_jpeg > 0)
528  wav->smv_cur_pt %= wav->smv_frames_per_jpeg;
529  if (!wav->smv_cur_pt)
530  wav->smv_block++;
531 
532  pkt->stream_index = 1;
533 smv_out:
534  avio_seek(s->pb, old_pos, SEEK_SET);
535  if (ret == AVERROR_EOF) {
536  wav->smv_eof = 1;
537  goto smv_retry;
538  }
539  return ret;
540  }
541  }
542 
543  st = s->streams[0];
544 
545  left = wav->data_end - avio_tell(s->pb);
546  if (wav->ignore_length)
547  left = INT_MAX;
548  if (left <= 0) {
549  if (CONFIG_W64_DEMUXER && wav->w64)
550  left = find_guid(s->pb, ff_w64_guid_data) - 24;
551  else
552  left = find_tag(wav, s->pb, MKTAG('d', 'a', 't', 'a'));
553  if (left < 0) {
554  wav->audio_eof = 1;
555  if (wav->smv_data_ofs > 0 && !wav->smv_eof)
556  goto smv_retry;
557  return AVERROR_EOF;
558  }
559  wav->data_end = avio_tell(s->pb) + left;
560  }
561 
562  size = MAX_SIZE;
563  if (st->codec->block_align > 1) {
564  if (size < st->codec->block_align)
565  size = st->codec->block_align;
566  size = (size / st->codec->block_align) * st->codec->block_align;
567  }
568  size = FFMIN(size, left);
569  ret = av_get_packet(s->pb, pkt, size);
570  if (ret < 0)
571  return ret;
572  pkt->stream_index = 0;
573 
574  return ret;
575 }
576 
577 static int wav_read_seek(AVFormatContext *s,
578  int stream_index, int64_t timestamp, int flags)
579 {
580  WAVDemuxContext *wav = s->priv_data;
581  AVStream *st;
582  wav->smv_eof = 0;
583  wav->audio_eof = 0;
584  if (wav->smv_data_ofs > 0) {
585  int64_t smv_timestamp = timestamp;
586  if (stream_index == 0)
587  smv_timestamp = av_rescale_q(timestamp, s->streams[0]->time_base, s->streams[1]->time_base);
588  else
589  timestamp = av_rescale_q(smv_timestamp, s->streams[1]->time_base, s->streams[0]->time_base);
590  if (wav->smv_frames_per_jpeg > 0) {
591  wav->smv_block = smv_timestamp / wav->smv_frames_per_jpeg;
592  wav->smv_cur_pt = smv_timestamp % wav->smv_frames_per_jpeg;
593  }
594  }
595 
596  st = s->streams[0];
597  switch (st->codec->codec_id) {
598  case AV_CODEC_ID_MP2:
599  case AV_CODEC_ID_MP3:
600  case AV_CODEC_ID_AC3:
601  case AV_CODEC_ID_DTS:
602  /* use generic seeking with dynamically generated indexes */
603  return -1;
604  default:
605  break;
606  }
607  return ff_pcm_read_seek(s, stream_index, timestamp, flags);
608 }
609 
610 #define OFFSET(x) offsetof(WAVDemuxContext, x)
611 #define DEC AV_OPT_FLAG_DECODING_PARAM
612 static const AVOption demux_options[] = {
613  { "ignore_length", "Ignore length", OFFSET(ignore_length), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, DEC },
614  { NULL },
615 };
616 
617 static const AVClass wav_demuxer_class = {
618  .class_name = "WAV demuxer",
619  .item_name = av_default_item_name,
620  .option = demux_options,
621  .version = LIBAVUTIL_VERSION_INT,
622 };
623 AVInputFormat ff_wav_demuxer = {
624  .name = "wav",
625  .long_name = NULL_IF_CONFIG_SMALL("WAV / WAVE (Waveform Audio)"),
626  .priv_data_size = sizeof(WAVDemuxContext),
627  .read_probe = wav_probe,
628  .read_header = wav_read_header,
629  .read_packet = wav_read_packet,
630  .read_seek = wav_read_seek,
631  .flags = AVFMT_GENERIC_INDEX,
632  .codec_tag = (const AVCodecTag * const []) { ff_codec_wav_tags, 0 },
633  .priv_class = &wav_demuxer_class,
634 };
635 #endif /* CONFIG_WAV_DEMUXER */
636 
637 #if CONFIG_W64_DEMUXER
638 static int w64_probe(AVProbeData *p)
639 {
640  if (p->buf_size <= 40)
641  return 0;
642  if (!memcmp(p->buf, ff_w64_guid_riff, 16) &&
643  !memcmp(p->buf + 24, ff_w64_guid_wave, 16))
644  return AVPROBE_SCORE_MAX;
645  else
646  return 0;
647 }
648 
649 static int w64_read_header(AVFormatContext *s)
650 {
651  int64_t size, data_ofs = 0;
652  AVIOContext *pb = s->pb;
653  WAVDemuxContext *wav = s->priv_data;
654  AVStream *st;
655  uint8_t guid[16];
656  int ret;
657 
658  avio_read(pb, guid, 16);
659  if (memcmp(guid, ff_w64_guid_riff, 16))
660  return AVERROR_INVALIDDATA;
661 
662  /* riff + wave + fmt + sizes */
663  if (avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8)
664  return AVERROR_INVALIDDATA;
665 
666  avio_read(pb, guid, 16);
667  if (memcmp(guid, ff_w64_guid_wave, 16)) {
668  av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
669  return AVERROR_INVALIDDATA;
670  }
671 
672  wav->w64 = 1;
673 
674  st = avformat_new_stream(s, NULL);
675  if (!st)
676  return AVERROR(ENOMEM);
677 
678  while (!avio_feof(pb)) {
679  if (avio_read(pb, guid, 16) != 16)
680  break;
681  size = avio_rl64(pb);
682  if (size <= 24 || INT64_MAX - size < avio_tell(pb))
683  return AVERROR_INVALIDDATA;
684 
685  if (!memcmp(guid, ff_w64_guid_fmt, 16)) {
686  /* subtract chunk header size - normal wav file doesn't count it */
687  ret = ff_get_wav_header(pb, st->codec, size - 24, 0);
688  if (ret < 0)
689  return ret;
690  avio_skip(pb, FFALIGN(size, INT64_C(8)) - size);
691 
692  avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
693  } else if (!memcmp(guid, ff_w64_guid_fact, 16)) {
694  int64_t samples;
695 
696  samples = avio_rl64(pb);
697  if (samples > 0)
698  st->duration = samples;
699  } else if (!memcmp(guid, ff_w64_guid_data, 16)) {
700  wav->data_end = avio_tell(pb) + size - 24;
701 
702  data_ofs = avio_tell(pb);
703  if (!pb->seekable)
704  break;
705 
706  avio_skip(pb, size - 24);
707  } else if (!memcmp(guid, ff_w64_guid_summarylist, 16)) {
708  int64_t start, end, cur;
709  uint32_t count, chunk_size, i;
710 
711  start = avio_tell(pb);
712  end = start + FFALIGN(size, INT64_C(8)) - 24;
713  count = avio_rl32(pb);
714 
715  for (i = 0; i < count; i++) {
716  char chunk_key[5], *value;
717 
718  if (avio_feof(pb) || (cur = avio_tell(pb)) < 0 || cur > end - 8 /* = tag + size */)
719  break;
720 
721  chunk_key[4] = 0;
722  avio_read(pb, chunk_key, 4);
723  chunk_size = avio_rl32(pb);
724 
725  value = av_mallocz(chunk_size + 1);
726  if (!value)
727  return AVERROR(ENOMEM);
728 
729  ret = avio_get_str16le(pb, chunk_size, value, chunk_size);
730  avio_skip(pb, chunk_size - ret);
731 
732  av_dict_set(&s->metadata, chunk_key, value, AV_DICT_DONT_STRDUP_VAL);
733  }
734 
735  avio_skip(pb, end - avio_tell(pb));
736  } else {
737  av_log(s, AV_LOG_DEBUG, "unknown guid: "FF_PRI_GUID"\n", FF_ARG_GUID(guid));
738  avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
739  }
740  }
741 
742  if (!data_ofs)
743  return AVERROR_EOF;
744 
745  ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
747 
748  handle_stream_probing(st);
750 
751  avio_seek(pb, data_ofs, SEEK_SET);
752 
753  return 0;
754 }
755 
756 AVInputFormat ff_w64_demuxer = {
757  .name = "w64",
758  .long_name = NULL_IF_CONFIG_SMALL("Sony Wave64"),
759  .priv_data_size = sizeof(WAVDemuxContext),
760  .read_probe = w64_probe,
761  .read_header = w64_read_header,
762  .read_packet = wav_read_packet,
763  .read_seek = wav_read_seek,
764  .flags = AVFMT_GENERIC_INDEX,
765  .codec_tag = (const AVCodecTag * const []) { ff_codec_wav_tags, 0 },
766 };
767 #endif /* CONFIG_W64_DEMUXER */