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);
149 static inline int wav_parse_bext_string(
AVFormatContext *s,
const char *key,
169 char temp[131], *coding_history;
171 uint64_t time_reference;
172 int64_t umid_parts[8], umid_mask = 0;
174 if ((ret = wav_parse_bext_string(s,
"description", 256)) < 0 ||
175 (ret = wav_parse_bext_string(s,
"originator", 32)) < 0 ||
176 (ret = wav_parse_bext_string(s,
"originator_reference", 32)) < 0 ||
177 (ret = wav_parse_bext_string(s,
"origination_date", 10)) < 0 ||
178 (ret = wav_parse_bext_string(s,
"origination_time", 8)) < 0)
182 snprintf(temp,
sizeof(temp),
"%"PRIu64, time_reference);
188 for (x = 0; x < 8; x++)
193 if (umid_parts[4] == 0 && umid_parts[5] == 0 &&
194 umid_parts[6] == 0 && umid_parts[7] == 0) {
197 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
198 umid_parts[0], umid_parts[1],
199 umid_parts[2], umid_parts[3]);
203 "0x%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64
204 "%016"PRIX64
"%016"PRIX64
"%016"PRIX64
"%016"PRIX64,
205 umid_parts[0], umid_parts[1],
206 umid_parts[2], umid_parts[3],
207 umid_parts[4], umid_parts[5],
208 umid_parts[6], umid_parts[7]);
223 if (!(coding_history =
av_malloc(size + 1)))
226 if ((ret =
avio_read(s->
pb, coding_history, size)) < 0)
229 coding_history[
size] = 0;
239 {
"description",
"comment" },
240 {
"originator",
"encoded_by" },
241 {
"origination_date",
"date" },
242 {
"origination_time",
"creation_time" },
250 int64_t sample_count = 0;
257 int ret, got_fmt = 0;
258 int64_t next_tag_ofs, data_ofs = -1;
267 case MKTAG(
'R',
'I',
'F',
'F'):
269 case MKTAG(
'R',
'I',
'F',
'X'):
272 case MKTAG(
'R',
'F',
'6',
'4'):
301 if (data_size < 0 || sample_count < 0) {
303 "ds64: data_size = %"PRId64
", sample_count = %"PRId64
"\n",
304 data_size, sample_count);
313 size = next_tag(pb, &tag, wav->
rifx);
320 case MKTAG(
'f',
'm',
't',
' '):
322 if (!got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
329 case MKTAG(
'd',
'a',
't',
'a'):
332 "found no 'fmt ' tag before the 'data' tag\n");
338 }
else if (size != 0xFFFFFFFF) {
340 next_tag_ofs = wav->
data_end = size ? next_tag_ofs : INT64_MAX;
343 "file may be invalid\n");
345 next_tag_ofs = wav->
data_end = INT64_MAX;
353 if (!pb->
seekable || (!rf64 && !size))
356 case MKTAG(
'f',
'a',
'c',
't'):
360 case MKTAG(
'b',
'e',
'x',
't'):
361 if ((ret = wav_parse_bext_tag(s, size)) < 0)
364 case MKTAG(
'S',
'M',
'V',
'0'):
370 if (size !=
MKTAG(
'0',
'2',
'0',
'0')) {
405 case MKTAG(
'L',
'I',
'S',
'T'):
411 case MKTAG(
'I',
'N',
'F',
'O'):
419 wav_seek_tag(wav, pb, next_tag_ofs, SEEK_SET) < 0) {
443 sample_count = (data_size << 3)
470 if (!memcmp(guid, guid1, 16))
477 #define MAX_SIZE 4096
486 if (CONFIG_SPDIF_DEMUXER && wav->
spdif == 0 &&
498 if (CONFIG_SPDIF_DEMUXER && wav->
spdif == 1)
502 int64_t audio_dts, video_dts;
554 if (CONFIG_W64_DEMUXER && wav->
w64)
557 left = find_tag(wav, s->
pb,
MKTAG(
'd',
'a',
't',
'a'));
573 size =
FFMIN(size, left);
583 int stream_index, int64_t timestamp,
int flags)
590 int64_t smv_timestamp = timestamp;
591 if (stream_index == 0)
615 #define OFFSET(x) offsetof(WAVDemuxContext, x)
616 #define DEC AV_OPT_FLAG_DECODING_PARAM
617 static const AVOption demux_options[] = {
622 static const AVClass wav_demuxer_class = {
625 .option = demux_options,
638 .priv_class = &wav_demuxer_class,
642 #if CONFIG_W64_DEMUXER
656 int64_t
size, data_ofs = 0;
668 if (
avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8)
687 if (size <= 24 || INT64_MAX - size <
avio_tell(pb))
714 uint32_t
count, chunk_size, i;
717 end = start +
FFALIGN(size, INT64_C(8)) - 24;
720 for (i = 0; i <
count; i++) {
721 char chunk_key[5], *
value;
753 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
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
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 ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size, int big_endian)
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...
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 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.
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.