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