Go to the documentation of this file.
105 for (
int seg = 0; seg <
a->current_segment; seg++)
106 pts += (
a->segments[seg].end -
a->segments[seg].start) /
size;
108 pts += ((
pos -
a->segments[
a->current_segment].start) /
size);
120 int ret, extradata_size;
135 if (
a->nb_segments < 1)
138 a->schema_offset = 0x20;
139 a->strings_size =
a->data_offset -
a->strings_offset;
141 if (
a->rows_offset >
a->table_size ||
142 a->strings_offset >
a->table_size ||
143 a->data_offset >
a->table_size)
145 if (
a->strings_size <= 0 ||
a->name_offset >=
a->strings_size ||
146 a->strings_size > UINT16_MAX)
151 a->segments =
av_calloc(
a->nb_segments,
sizeof(*
a->segments));
155 a->xcolumns =
av_calloc(
a->columns,
sizeof(*
a->xcolumns));
159 a->string_table =
av_calloc(
a->strings_size + 1,
sizeof(*
a->string_table));
160 if (!
a->string_table)
163 for (
int c = 0;
c <
a->columns;
c++) {
171 a->xcolumns[
c].flag =
info >> 4;
172 a->xcolumns[
c].type =
info & 0x0F;
174 switch (
a->xcolumns[
c].type) {
199 a->xcolumns[
c].size = value_size;
202 a->xcolumns[
c].name =
a->string_table +
offset;
206 a->xcolumns[
c].offset =
avio_tell(pb) -
a->schema_offset;
212 a->xcolumns[
c].offset = column_offset;
213 column_offset += value_size;
225 for (
int c = 0;
c <
a->columns;
c++) {
230 if (!
a->xcolumns[
c].name || strcmp(
a->xcolumns[
c].name,
"data"))
233 type =
a->xcolumns[
c].type;
234 flag =
a->xcolumns[
c].flag;
235 col_offset =
a->xcolumns[
c].offset;
237 for (uint64_t
r = 0;
r <
a->nb_segments;
r++) {
239 data_offset =
a->schema_offset + col_offset;
241 data_offset =
a->rows_offset +
r *
a->row_width + col_offset;
256 a->segments[
r].start = start +
a->data_offset;
257 a->segments[
r].end =
a->segments[
r].start +
size;
259 a->segments[
r].start <
a->segments[
r-1].end &&
260 a->segments[
r].end >
a->segments[
r-1].start)
267 if (!
a->segments[0].end)
274 par =
s->streams[0]->codecpar;
277 codec =
a->string_table +
a->name_offset;
278 if (!strcmp(codec,
"AAX")) {
280 ret64 =
avio_seek(pb,
a->segments[0].start, SEEK_SET);
281 if (ret64 < 0 ||
avio_rb16(pb) != 0x8000)
284 if (extradata_size < 12)
311 int ret, extradata_size = 0;
312 uint8_t *extradata =
NULL;
320 for (uint32_t seg = 0; seg <
a->nb_segments; seg++) {
321 int64_t start =
a->segments[seg].start;
325 a->current_segment = seg;
332 if (
pkt->
pos >=
a->segments[
a->current_segment].end -
skip) {
333 if (
a->current_segment + 1 ==
a->nb_segments)
335 a->current_segment++;
336 avio_seek(pb,
a->segments[
a->current_segment].start, SEEK_SET);
343 if (extradata_size < 12)
348 if (
avio_read(pb, extradata, extradata_size) != extradata_size) {
390 .p.extensions =
"aax",
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
enum AVMediaType codec_type
General type of the encoded data.
This struct describes the properties of an encoded stream.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
#define AVERROR_EOF
End of file.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
static int aax_probe(const AVProbeData *p)
int nb_channels
Number of channels in this layout.
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...
int av_packet_add_side_data(AVPacket *pkt, enum AVPacketSideDataType type, uint8_t *data, size_t size)
Wrap an existing array as a packet side data.
static av_cold int read_close(AVFormatContext *ctx)
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
static int aax_read_packet(AVFormatContext *s, AVPacket *pkt)
static int aax_read_close(AVFormatContext *s)
unsigned int avio_rb32(AVIOContext *s)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
static int read_header(FFV1Context *f)
static int64_t get_pts(AVFormatContext *s, int64_t pos, int size)
This structure contains the data a format has to probe a file.
AVChannelLayout ch_layout
Audio only.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
int sample_rate
Audio only.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define MKBETAG(a, b, c, d)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
const FFInputFormat ff_aax_demuxer
int avio_r8(AVIOContext *s)
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
void * av_calloc(size_t nmemb, size_t size)
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
unsigned int avio_rb16(AVIOContext *s)
#define AV_INPUT_BUFFER_PADDING_SIZE
static int aax_read_header(AVFormatContext *s)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_WB16 unsigned int_TMPL AV_RB8
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
static int read_probe(const AVProbeData *p)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
int64_t pos
byte position in stream, -1 if unknown
#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 void BS_FUNC() skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.