63 #if CONFIG_WAV_DEMUXER
65 static int64_t next_tag(
AVIOContext *pb, uint32_t *
tag,
int big_endian)
78 offset += offset < INT64_MAX && offset + wav->
unaligned & 1;
92 size = next_tag(pb, &tag, wav->
rifx);
95 wav_seek_tag(wav, pb, size, SEEK_CUR);
105 if (!memcmp(p->
buf + 8,
"WAVE", 4)) {
106 if (!memcmp(p->
buf,
"RIFF", 4) || !memcmp(p->
buf,
"RIFX", 4))
111 else if (!memcmp(p->
buf,
"RF64", 4) &&
112 !memcmp(p->
buf + 12,
"ds64", 4))
118 static void handle_stream_probing(
AVStream *st)
140 handle_stream_probing(*st);
152 int num_streams, i, channels = 0;
167 if (size < 40 + num_streams * 4)
170 (*st)->codec->sample_rate =
avio_rb32(pb);
175 for (i = 0; i < num_streams; i++) {
179 (*st)->codec->channels = channels;
181 if ((*st)->codec->channels <= 0 || (*st)->codec->sample_rate <= 0)
187 memset((*st)->codec->extradata, 0, 34);
192 static inline int wav_parse_bext_string(
AVFormatContext *s,
const char *key,
212 char temp[131], *coding_history;
214 uint64_t time_reference;
215 int64_t umid_parts[8], umid_mask = 0;
217 if ((ret = wav_parse_bext_string(s,
"description", 256)) < 0 ||
218 (ret = wav_parse_bext_string(s,
"originator", 32)) < 0 ||
219 (ret = wav_parse_bext_string(s,
"originator_reference", 32)) < 0 ||
220 (ret = wav_parse_bext_string(s,
"origination_date", 10)) < 0 ||
221 (ret = wav_parse_bext_string(s,
"origination_time", 8)) < 0)
225 snprintf(temp,
sizeof(temp),
"%"PRIu64, time_reference);
231 for (x = 0; x < 8; x++)
236 if (umid_parts[4] == 0 && umid_parts[5] == 0 &&
237 umid_parts[6] == 0 && umid_parts[7] == 0) {
240 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
241 umid_parts[0], umid_parts[1],
242 umid_parts[2], umid_parts[3]);
246 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64
247 "%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
248 umid_parts[0], umid_parts[1],
249 umid_parts[2], umid_parts[3],
250 umid_parts[4], umid_parts[5],
251 umid_parts[6], umid_parts[7]);
266 if (!(coding_history =
av_malloc(size + 1)))
269 if ((ret =
avio_read(s->
pb, coding_history, size)) < 0)
272 coding_history[
size] = 0;
282 {
"description",
"comment" },
283 {
"originator",
"encoded_by" },
284 {
"origination_date",
"date" },
285 {
"origination_time",
"creation_time" },
293 int64_t sample_count = 0;
300 int ret, got_fmt = 0, got_xma2 = 0;
301 int64_t next_tag_ofs, data_ofs = -1;
310 case MKTAG(
'R',
'I',
'F',
'F'):
312 case MKTAG(
'R',
'I',
'F',
'X'):
315 case MKTAG(
'R',
'F',
'6',
'4'):
344 if (data_size < 0 || sample_count < 0) {
346 "ds64: data_size = %"PRId64
", sample_count = %"PRId64
"\n",
347 data_size, sample_count);
356 size = next_tag(pb, &tag, wav->
rifx);
363 case MKTAG(
'f',
'm',
't',
' '):
365 if (!got_xma2 && !got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
372 case MKTAG(
'X',
'M',
'A',
'2'):
374 if (!got_fmt && !got_xma2 && (ret = wav_parse_xma2_tag(s, size, &st)) < 0) {
381 case MKTAG(
'd',
'a',
't',
'a'):
382 if (!pb->seekable && !got_fmt && !got_xma2) {
384 "found no 'fmt ' tag before the 'data' tag\n");
390 }
else if (size != 0xFFFFFFFF) {
392 next_tag_ofs = wav->
data_end = size ? next_tag_ofs : INT64_MAX;
395 "file may be invalid\n");
397 next_tag_ofs = wav->
data_end = INT64_MAX;
405 if (!pb->
seekable || (!rf64 && !size))
408 case MKTAG(
'f',
'a',
'c',
't'):
412 case MKTAG(
'b',
'e',
'x',
't'):
413 if ((ret = wav_parse_bext_tag(s, size)) < 0)
416 case MKTAG(
'S',
'M',
'V',
'0'):
422 if (size !=
MKTAG(
'0',
'2',
'0',
'0')) {
457 case MKTAG(
'L',
'I',
'S',
'T'):
463 case MKTAG(
'I',
'N',
'F',
'O'):
471 wav_seek_tag(wav, pb, next_tag_ofs, SEEK_SET) < 0) {
477 if (!got_fmt && !got_xma2) {
489 if (data_size > (INT64_MAX>>3)) {
521 sample_count = (data_size << 3)
548 if (!memcmp(guid, guid1, 16))
555 #define MAX_SIZE 4096
564 if (CONFIG_SPDIF_DEMUXER && wav->
spdif == 0 &&
576 if (CONFIG_SPDIF_DEMUXER && wav->
spdif == 1)
632 if (CONFIG_W64_DEMUXER && wav->
w64)
635 left = find_tag(wav, s->
pb,
MKTAG(
'd',
'a',
't',
'a'));
651 size =
FFMIN(size, left);
661 int stream_index, int64_t timestamp,
int flags)
668 int64_t smv_timestamp = timestamp;
669 if (stream_index == 0)
693 #define OFFSET(x) offsetof(WAVDemuxContext, x)
694 #define DEC AV_OPT_FLAG_DECODING_PARAM
695 static const AVOption demux_options[] = {
700 static const AVClass wav_demuxer_class = {
703 .option = demux_options,
716 .priv_class = &wav_demuxer_class,
720 #if CONFIG_W64_DEMUXER
734 int64_t
size, data_ofs = 0;
746 if (
avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8)
765 if (size <= 24 || INT64_MAX - size <
avio_tell(pb))
792 uint32_t
count, chunk_size, i;
795 end = start +
FFALIGN(size, INT64_C(8)) - 24;
798 for (i = 0; i <
count; i++) {
799 char chunk_key[5], *
value;
831 handle_stream_probing(st);
int ff_read_riff_info(AVFormatContext *s, int64_t size)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int64_t avio_size(AVIOContext *s)
Get the filesize.
const uint8_t ff_w64_guid_wave[16]
int ff_spdif_probe(const uint8_t *p_buf, int buf_size, enum AVCodecID *codec)
const uint8_t ff_w64_guid_fact[16]
#define AV_LOG_WARNING
Something somehow does not look correct.
int64_t bit_rate
the average bitrate
#define LIBAVUTIL_VERSION_INT
unsigned char * buf_end
End of the data, may be less than buffer+buffer_size if the read function returned less data than req...
int64_t pos
byte position in stream, -1 if unknown
int probe_packets
Number of packets to buffer for codec probing.
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
unsigned char * buffer
Start of the buffer.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
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 block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
static const GUIDParseTable * find_guid(ff_asf_guid guid)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
unsigned int avio_rb32(AVIOContext *s)
static av_cold int end(AVCodecContext *avctx)
enum AVStreamParseType need_parsing
int id
Format-specific stream ID.
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
AVStream ** streams
A list of all streams in the file.
#define AVERROR_EOF
End of file.
uint64_t avio_rb64(AVIOContext *s)
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int ff_spdif_read_packet(AVFormatContext *s, AVPacket *pkt)
AVCodecID
Identify the syntax and semantics of the bitstream.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
AVDictionary * metadata
Metadata that applies to the whole file.
unsigned int avio_rl32(AVIOContext *s)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
preferred ID for decoding MPEG audio layer 1, 2 or 3
simple assert() macros that are a bit more flexible than ISO C assert().
static const uint8_t offset[127][2]
const AVCodecTag ff_codec_wav_tags[]
int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
Compare 2 timestamps each in its own timebases.
int avio_r8(AVIOContext *s)
AVCodecContext * codec
Codec context associated with this stream.
int buf_size
Size of buf except extra allocated bytes.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
int width
picture width / height.
GLsizei GLboolean const GLfloat * value
const uint8_t ff_w64_guid_data[16]
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
const uint8_t ff_w64_guid_riff[16]
static int read_header(FFV1Context *f)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
enum AVMediaType codec_type
int sample_rate
samples per second
AVIOContext * pb
I/O context.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Describe the class of an AVClass context structure.
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecContext *codec, int size, int big_endian)
This structure contains the data a format has to probe a file.
static const uint8_t start_code[]
const AVMetadataConv ff_riff_info_conv[]
const uint8_t ff_w64_guid_fmt[16]
int64_t duration
Decoding: duration of the stream, in stream time base.
unsigned int avio_rl16(AVIOContext *s)
int channels
number of audio channels
void * priv_data
Format private data.
const uint8_t ff_w64_guid_summarylist[16]
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
unsigned int avio_rl24(AVIOContext *s)
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
#define MKTAG(a, b, c, d)
int request_probe
stream probing state -1 -> probing finished 0 -> no probing requested rest -> perform probing with re...
This structure stores compressed data.
uint64_t avio_rl64(AVIOContext *s)
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
#define AV_NOPTS_VALUE
Undefined timestamp value.