Go to the documentation of this file.
50 uint32_t header_size, data_size, data_offset, loop_start, loop_end,
51 nb_samples, nb_metadata, coef_offset = 0;
109 if (file_size - data_size > UINT32_MAX)
119 if (0x30 * par->
channels + 0x4 > header_size)
121 data_offset = header_size - 0x30 * par->
channels - 0x4;
122 if ((ret_size =
avio_seek(
s->pb, data_offset, SEEK_SET)) < 0)
126 if (file_size > 0 && (int64_t)m->
data_start + data_size > file_size) {
128 if ((int64_t)header_size + data_size > file_size) {
130 "MCA metadata corrupted, unable to determine the data offset.\n");
135 "Incorrect header size found in metadata, "
136 "header size approximated from the data size\n");
137 if (file_size - data_offset > UINT32_MAX)
147 if (0x30 * par->
channels + nb_metadata * 0x14 > header_size)
150 header_size - 0x30 * par->
channels + nb_metadata * 0x14;
159 if ((ret_size =
avio_seek(
s->pb, coef_offset, SEEK_SET)) < 0)
161 for (ch = 0; ch < par->
channels; ch++) {
199 int64_t timestamp,
int flags)
#define AV_LOG_WARNING
Something somehow does not look correct.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
enum AVMediaType codec_type
General type of the encoded data.
This struct describes the properties of an encoded stream.
#define AVERROR_EOF
End of file.
#define MKTAG(a, b, c, d)
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
int64_t avio_size(AVIOContext *s)
Get the filesize.
@ AV_CODEC_ID_ADPCM_THP_LE
int64_t duration
Decoding: duration of the stream, in stream time base.
unsigned int avio_rl16(AVIOContext *s)
static int probe(const AVProbeData *p)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int read_header(AVFormatContext *s)
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
This structure contains the data a format has to probe a file.
int sample_rate
Audio only.
AVInputFormat ff_mca_demuxer
unsigned int avio_rl32(AVIOContext *s)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static int read_packet(AVFormatContext *s, AVPacket *pkt)
int avio_r8(AVIOContext *s)
#define AV_TIME_BASE
Internal time base represented as integer.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Filter the word “frame” indicates either a video frame or a group of audio samples
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
uint32_t samples_per_block
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it.
#define avpriv_request_sample(...)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
#define flags(name, subs,...)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.