Go to the documentation of this file.
103 for (
int seg = 0; seg <
a->current_segment; seg++)
104 pts += (
a->segments[seg].end -
a->segments[seg].start) /
size;
106 pts += ((
pos -
a->segments[
a->current_segment].start) /
size);
117 int64_t column_offset = 0;
118 int ret, extradata_size;
133 if (
a->nb_segments < 1)
136 a->schema_offset = 0x20;
137 a->strings_size =
a->data_offset -
a->strings_offset;
139 if (
a->rows_offset >
a->table_size ||
140 a->strings_offset >
a->table_size ||
141 a->data_offset >
a->table_size)
143 if (
a->strings_size <= 0 ||
a->name_offset >=
a->strings_size ||
144 a->strings_size > UINT16_MAX)
149 a->segments =
av_calloc(
a->nb_segments,
sizeof(*
a->segments));
153 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) {
165 for (
int c = 0;
c <
a->columns;
c++) {
170 if (
offset >=
a->strings_size) {
175 a->xcolumns[
c].flag =
info >> 4;
176 a->xcolumns[
c].type =
info & 0x0F;
178 switch (
a->xcolumns[
c].type) {
204 a->xcolumns[
c].size = value_size;
207 a->xcolumns[
c].name =
a->string_table +
offset;
211 a->xcolumns[
c].offset =
avio_tell(pb) -
a->schema_offset;
217 a->xcolumns[
c].offset = column_offset;
218 column_offset += value_size;
227 if (
ret !=
a->strings_size) {
234 for (
int c = 0;
c <
a->columns;
c++) {
235 int64_t data_offset = 0;
239 if (!
a->xcolumns[
c].name || strcmp(
a->xcolumns[
c].name,
"data"))
242 type =
a->xcolumns[
c].type;
243 flag =
a->xcolumns[
c].flag;
244 col_offset =
a->xcolumns[
c].offset;
246 for (uint64_t
r = 0;
r <
a->nb_segments;
r++) {
248 data_offset =
a->schema_offset + col_offset;
250 data_offset =
a->rows_offset +
r *
a->row_width + col_offset;
265 a->segments[
r].start = start +
a->data_offset;
266 a->segments[
r].end =
a->segments[
r].start +
size;
274 if (!
a->segments[0].end) {
285 par =
s->streams[0]->codecpar;
288 codec =
a->string_table +
a->name_offset;
289 if (!strcmp(codec,
"AAX")) {
291 ret64 =
avio_seek(pb,
a->segments[0].start, SEEK_SET);
292 if (ret64 < 0 ||
avio_rb16(pb) != 0x8000) {
297 if (extradata_size < 12) {
336 int ret, extradata_size = 0;
345 for (uint32_t seg = 0; seg <
a->nb_segments; seg++) {
346 int64_t start =
a->segments[seg].start;
347 int64_t end =
a->segments[seg].end;
350 a->current_segment = seg;
352 skip = (end - start) - ((end - start) /
size) *
size;
357 if (
pkt->
pos >=
a->segments[
a->current_segment].end - skip) {
358 if (
a->current_segment + 1 ==
a->nb_segments)
360 a->current_segment++;
361 avio_seek(pb,
a->segments[
a->current_segment].start, SEEK_SET);
368 if (extradata_size < 12)
373 if (
avio_read(pb, extradata, extradata_size) != extradata_size) {
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.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
static int aax_probe(const AVProbeData *p)
FF_ENABLE_DEPRECATION_WARNINGS 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)
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
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.
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.
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
#define MKBETAG(a, b, c, d)
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...
static int read_packet(void *opaque, uint8_t *buf, int buf_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)
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
@ 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...
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.
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 flags(name, subs,...)
AVInputFormat ff_aax_demuxer
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
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.