94 #if CONFIG_WAV_DEMUXER
96 static int64_t next_tag(
AVIOContext *pb, uint32_t *
tag,
int big_endian)
109 offset += offset < INT64_MAX && offset + wav->
unaligned & 1;
123 size = next_tag(pb, &tag, wav->
rifx);
126 wav_seek_tag(wav, pb, size, SEEK_CUR);
136 if (!memcmp(p->
buf + 8,
"WAVE", 4)) {
137 if (!memcmp(p->
buf,
"RIFF", 4) || !memcmp(p->
buf,
"RIFX", 4))
142 else if (!memcmp(p->
buf,
"RF64", 4) &&
143 !memcmp(p->
buf + 12,
"ds64", 4))
149 static void handle_stream_probing(
AVStream *st)
171 handle_stream_probing(*st);
183 int num_streams, i, channels = 0;
198 if (size < 40 + num_streams * 4)
201 (*st)->codecpar->sample_rate =
avio_rb32(pb);
206 for (i = 0; i < num_streams; i++) {
210 (*st)->codecpar->channels = channels;
212 if ((*st)->codecpar->channels <= 0 || (*st)->codecpar->sample_rate <= 0)
218 memset((*st)->codecpar->extradata, 0, 34);
223 static inline int wav_parse_bext_string(
AVFormatContext *s,
const char *key,
243 char temp[131], *coding_history;
245 uint64_t time_reference;
246 int64_t umid_parts[8], umid_mask = 0;
248 if ((ret = wav_parse_bext_string(s,
"description", 256)) < 0 ||
249 (ret = wav_parse_bext_string(s,
"originator", 32)) < 0 ||
250 (ret = wav_parse_bext_string(s,
"originator_reference", 32)) < 0 ||
251 (ret = wav_parse_bext_string(s,
"origination_date", 10)) < 0 ||
252 (ret = wav_parse_bext_string(s,
"origination_time", 8)) < 0)
256 snprintf(temp,
sizeof(temp),
"%"PRIu64, time_reference);
262 for (x = 0; x < 8; x++)
267 if (umid_parts[4] == 0 && umid_parts[5] == 0 &&
268 umid_parts[6] == 0 && umid_parts[7] == 0) {
271 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
272 umid_parts[0], umid_parts[1],
273 umid_parts[2], umid_parts[3]);
277 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64
278 "%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
279 umid_parts[0], umid_parts[1],
280 umid_parts[2], umid_parts[3],
281 umid_parts[4], umid_parts[5],
282 umid_parts[6], umid_parts[7]);
297 if (!(coding_history =
av_malloc(size + 1)))
300 if ((ret =
avio_read(s->
pb, coding_history, size)) < 0)
303 coding_history[
size] = 0;
313 {
"description",
"comment" },
314 {
"originator",
"encoded_by" },
315 {
"origination_date",
"date" },
316 {
"origination_time",
"creation_time" },
324 int64_t sample_count = 0;
330 int ret, got_fmt = 0, got_xma2 = 0;
331 int64_t next_tag_ofs, data_ofs = -1;
340 case MKTAG(
'R',
'I',
'F',
'F'):
342 case MKTAG(
'R',
'I',
'F',
'X'):
345 case MKTAG(
'R',
'F',
'6',
'4'):
374 if (data_size < 0 || sample_count < 0) {
376 "ds64: data_size = %"PRId64
", sample_count = %"PRId64
"\n",
377 data_size, sample_count);
386 size = next_tag(pb, &tag, wav->
rifx);
393 case MKTAG(
'f',
'm',
't',
' '):
395 if (!got_xma2 && !got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
402 case MKTAG(
'X',
'M',
'A',
'2'):
404 if (!got_fmt && !got_xma2 && (ret = wav_parse_xma2_tag(s, size, &st)) < 0) {
411 case MKTAG(
'd',
'a',
't',
'a'):
414 "found no 'fmt ' tag before the 'data' tag\n");
420 }
else if (size != 0xFFFFFFFF) {
422 next_tag_ofs = wav->
data_end = size ? next_tag_ofs : INT64_MAX;
425 "file may be invalid\n");
427 next_tag_ofs = wav->
data_end = INT64_MAX;
438 case MKTAG(
'f',
'a',
'c',
't'):
442 case MKTAG(
'b',
'e',
'x',
't'):
443 if ((ret = wav_parse_bext_tag(s, size)) < 0)
446 case MKTAG(
'S',
'M',
'V',
'0'):
452 if (size !=
MKTAG(
'0',
'2',
'0',
'0')) {
487 case MKTAG(
'L',
'I',
'S',
'T'):
493 case MKTAG(
'I',
'N',
'F',
'O'):
501 wav_seek_tag(wav, pb, next_tag_ofs, SEEK_SET) < 0) {
507 if (!got_fmt && !got_xma2) {
519 if (data_size > (INT64_MAX>>3)) {
551 sample_count = (data_size << 3)
596 if (!memcmp(guid, guid1, 16))
603 #define MAX_SIZE 4096
612 if (CONFIG_SPDIF_DEMUXER && wav->
spdif == 1)
668 if (CONFIG_W64_DEMUXER && wav->
w64)
671 left = find_tag(wav, s->
pb,
MKTAG(
'd',
'a',
't',
'a'));
687 size =
FFMIN(size, left);
697 int stream_index, int64_t timestamp,
int flags)
704 int64_t smv_timestamp = timestamp;
705 if (stream_index == 0)
730 #define OFFSET(x) offsetof(WAVDemuxContext, x)
731 #define DEC AV_OPT_FLAG_DECODING_PARAM
732 static const AVOption demux_options[] = {
737 static const AVClass wav_demuxer_class = {
740 .option = demux_options,
753 .priv_class = &wav_demuxer_class,
757 #if CONFIG_W64_DEMUXER
771 int64_t
size, data_ofs = 0;
783 if (
avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8)
802 if (size <= 24 || INT64_MAX - size <
avio_tell(pb))
829 uint32_t
count, chunk_size, i;
832 end = start +
FFALIGN(size, INT64_C(8)) - 24;
835 for (i = 0; i <
count; i++) {
836 char chunk_key[5], *
value;
844 if (chunk_size == UINT32_MAX)
870 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.
#define LIBAVUTIL_VERSION_INT
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)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
static void set_spdif(AVFormatContext *s, WAVDemuxContext *wav)
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
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.
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.
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 avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian)
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
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
#define av_fourcc2str(fourcc)
enum AVMediaType codec_type
General type of the encoded data.
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 two timestamps each in its own time base.
int extradata_size
Size of the extradata content in bytes.
int avio_r8(AVIOContext *s)
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 block_align
Audio only.
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...
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)
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
AVIOContext * pb
I/O context.
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.
This structure contains the data a format has to probe a file.
const AVMetadataConv ff_riff_info_conv[]
const uint8_t ff_w64_guid_fmt[16]
int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
Ensures that the requested seekback buffer size will be available.
int64_t duration
Decoding: duration of the stream, in stream time base.
int sample_rate
Audio only.
unsigned int avio_rl16(AVIOContext *s)
void * priv_data
Format private data.
const uint8_t ff_w64_guid_summarylist[16]
int bits_per_coded_sample
The number of bits per sample in the codedwords.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
AVCodecParameters * codecpar
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
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)
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.