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