FFmpeg
aaxdec.c
Go to the documentation of this file.
1 /*
2  * AAX demuxer
3  * Copyright (c) 2020 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/avassert.h"
23 #include "libavutil/intreadwrite.h"
24 #include "avformat.h"
25 #include "internal.h"
26 
27 typedef struct AAXColumn {
30  const char *name;
31  uint32_t offset;
32  int size;
33 } AAXColumn;
34 
35 typedef struct AAXSegment {
36  int64_t start;
37  int64_t end;
38 } AAXSegment;
39 
40 typedef struct AAXContext {
41  int64_t table_size;
42  uint16_t version;
43  int64_t rows_offset;
44  int64_t strings_offset;
45  int64_t data_offset;
46  int64_t name_offset;
47  uint16_t columns;
48  uint16_t row_width;
49  uint32_t nb_segments;
50  int64_t schema_offset;
51  int64_t strings_size;
52  char *string_table;
53 
54  uint32_t current_segment;
55 
58 } AAXContext;
59 
60 static int aax_probe(const AVProbeData *p)
61 {
62  if (AV_RB32(p->buf) != MKBETAG('@','U','T','F'))
63  return 0;
64  if (AV_RB32(p->buf + 4) == 0)
65  return 0;
66  if (AV_RB16(p->buf + 8) > 1)
67  return 0;
68  if (AV_RB32(p->buf + 28) < 1)
69  return 0;
70 
71  return AVPROBE_SCORE_MAX;
72 }
73 
74 enum ColumnFlag {
78  COLUMN_FLAG_UNDEFINED = 0x8 /* shouldn't exist */
79 };
80 
81 enum ColumnType {
94  COLUMN_TYPE_UINT128 = 0x0c, /* for GUIDs */
96 };
97 
98 static int64_t get_pts(AVFormatContext *s, int64_t pos, int size)
99 {
100  AAXContext *a = s->priv_data;
101  int64_t pts = 0;
102 
103  for (int seg = 0; seg < a->current_segment; seg++)
104  pts += (a->segments[seg].end - a->segments[seg].start) / size;
105 
106  pts += ((pos - a->segments[a->current_segment].start) / size);
107 
108  return pts;
109 }
110 
112 {
113  AAXContext *a = s->priv_data;
114  AVIOContext *pb = s->pb;
115  AVCodecParameters *par;
116  AVStream *st;
117  int64_t column_offset = 0;
118  int ret, extradata_size;
119  char *codec;
120  int64_t ret64;
121 
122  avio_skip(pb, 4);
123  a->table_size = avio_rb32(pb) + 8LL;
124  a->version = avio_rb16(pb);
125  a->rows_offset = avio_rb16(pb) + 8LL;
126  a->strings_offset = avio_rb32(pb) + 8LL;
127  a->data_offset = avio_rb32(pb) + 8LL;
128  a->name_offset = avio_rb32(pb);
129  a->columns = avio_rb16(pb);
130  a->row_width = avio_rb16(pb);
131  a->nb_segments = avio_rb32(pb);
132 
133  if (a->nb_segments < 1)
134  return AVERROR_INVALIDDATA;
135 
136  a->schema_offset = 0x20;
137  a->strings_size = a->data_offset - a->strings_offset;
138 
139  if (a->rows_offset > a->table_size ||
140  a->strings_offset > a->table_size ||
141  a->data_offset > a->table_size)
142  return AVERROR_INVALIDDATA;
143  if (a->strings_size <= 0 || a->name_offset >= a->strings_size ||
144  a->strings_size > UINT16_MAX)
145  return AVERROR_INVALIDDATA;
146  if (a->columns <= 0)
147  return AVERROR_INVALIDDATA;
148 
149  a->segments = av_calloc(a->nb_segments, sizeof(*a->segments));
150  if (!a->segments)
151  return AVERROR(ENOMEM);
152 
153  a->xcolumns = av_calloc(a->columns, sizeof(*a->xcolumns));
154  if (!a->xcolumns) {
155  ret = AVERROR(ENOMEM);
156  goto fail;
157  }
158 
159  a->string_table = av_calloc(a->strings_size + 1, sizeof(*a->string_table));
160  if (!a->string_table) {
161  ret = AVERROR(ENOMEM);
162  goto fail;
163  }
164 
165  for (int c = 0; c < a->columns; c++) {
166  uint8_t info = avio_r8(pb);
167  uint32_t offset = avio_rb32(pb);
168  int value_size;
169 
170  if (offset >= a->strings_size) {
172  goto fail;
173  }
174 
175  a->xcolumns[c].flag = info >> 4;
176  a->xcolumns[c].type = info & 0x0F;
177 
178  switch (a->xcolumns[c].type) {
179  case COLUMN_TYPE_UINT8:
180  case COLUMN_TYPE_SINT8:
181  value_size = 0x01;
182  break;
183  case COLUMN_TYPE_UINT16:
184  case COLUMN_TYPE_SINT16:
185  value_size = 0x02;
186  break;
187  case COLUMN_TYPE_UINT32:
188  case COLUMN_TYPE_SINT32:
189  case COLUMN_TYPE_FLOAT:
190  case COLUMN_TYPE_STRING:
191  value_size = 0x04;
192  break;
193  case COLUMN_TYPE_VLDATA:
194  value_size = 0x08;
195  break;
196  case COLUMN_TYPE_UINT128:
197  value_size = 0x10;
198  break;
199  default:
201  goto fail;
202  }
203 
204  a->xcolumns[c].size = value_size;
205 
206  if (a->xcolumns[c].flag & COLUMN_FLAG_NAME)
207  a->xcolumns[c].name = a->string_table + offset;
208 
209  if (a->xcolumns[c].flag & COLUMN_FLAG_DEFAULT) {
210  /* data is found relative to columns start */
211  a->xcolumns[c].offset = avio_tell(pb) - a->schema_offset;
212  avio_skip(pb, value_size);
213  }
214 
215  if (a->xcolumns[c].flag & COLUMN_FLAG_ROW) {
216  /* data is found relative to row start */
217  a->xcolumns[c].offset = column_offset;
218  column_offset += value_size;
219  }
220  }
221 
222  ret = ret64 = avio_seek(pb, a->strings_offset, SEEK_SET);
223  if (ret64 < 0)
224  goto fail;
225 
226  ret = avio_read(pb, a->string_table, a->strings_size);
227  if (ret != a->strings_size) {
228  if (ret < 0)
229  goto fail;
230  ret = AVERROR(EIO);
231  goto fail;
232  }
233 
234  for (int c = 0; c < a->columns; c++) {
235  int64_t data_offset = 0;
236  int64_t col_offset;
237  int flag, type;
238 
239  if (!a->xcolumns[c].name || strcmp(a->xcolumns[c].name, "data"))
240  continue;
241 
242  type = a->xcolumns[c].type;
243  flag = a->xcolumns[c].flag;
244  col_offset = a->xcolumns[c].offset;
245 
246  for (uint64_t r = 0; r < a->nb_segments; r++) {
247  if (flag & COLUMN_FLAG_DEFAULT) {
248  data_offset = a->schema_offset + col_offset;
249  } else if (flag & COLUMN_FLAG_ROW) {
250  data_offset = a->rows_offset + r * a->row_width + col_offset;
251  } else {
253  goto fail;
254  }
255 
256  ret = ret64 = avio_seek(pb, data_offset, SEEK_SET);
257  if (ret64 < 0)
258  goto fail;
259 
260  if (type == COLUMN_TYPE_VLDATA) {
261  int64_t start, size;
262 
263  start = avio_rb32(pb);
264  size = avio_rb32(pb);
265  a->segments[r].start = start + a->data_offset;
266  a->segments[r].end = a->segments[r].start + size;
267  } else {
269  goto fail;
270  }
271  }
272  }
273 
274  if (!a->segments[0].end) {
276  goto fail;
277  }
278 
279  st = avformat_new_stream(s, NULL);
280  if (!st) {
281  ret = AVERROR(ENOMEM);
282  goto fail;
283  }
284  st->start_time = 0;
285  par = s->streams[0]->codecpar;
287 
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) {
294  goto fail;
295  }
296  extradata_size = avio_rb16(pb) + 4;
297  if (extradata_size < 12) {
299  goto fail;
300  }
301  avio_seek(pb, -4, SEEK_CUR);
302  ret = ff_get_extradata(s, par, pb, extradata_size);
303  if (ret < 0) {
304  goto fail;
305  }
306  par->channels = AV_RB8 (par->extradata + 7);
307  par->sample_rate = AV_RB32(par->extradata + 8);
308  if (!par->channels || !par->sample_rate) {
310  goto fail;
311  }
312 
313  avpriv_set_pts_info(st, 64, 32, par->sample_rate);
314  /*} else if (!strcmp(codec, "HCA") ){
315  par->codec_id = AV_CODEC_ID_HCA;*/
316  } else {
318  goto fail;
319  }
320 
321  return 0;
322 fail:
323  av_freep(&a->string_table);
324  av_freep(&a->xcolumns);
325  av_freep(&a->segments);
326 
327  return ret;
328 }
329 
331 {
332  AAXContext *a = s->priv_data;
333  AVCodecParameters *par = s->streams[0]->codecpar;
334  AVIOContext *pb = s->pb;
335  const int size = 18 * par->channels;
336  int ret, extradata_size = 0;
337  uint8_t *extradata = NULL;
338  int skip = 0;
339 
340  if (avio_feof(pb))
341  return AVERROR_EOF;
342 
343  pkt->pos = avio_tell(pb);
344 
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;
348 
349  if (pkt->pos >= start && pkt->pos <= end) {
350  a->current_segment = seg;
351  if (par->codec_id == AV_CODEC_ID_ADPCM_ADX)
352  skip = (end - start) - ((end - start) / size) * size;
353  break;
354  }
355  }
356 
357  if (pkt->pos >= a->segments[a->current_segment].end - skip) {
358  if (a->current_segment + 1 == a->nb_segments)
359  return AVERROR_EOF;
360  a->current_segment++;
361  avio_seek(pb, a->segments[a->current_segment].start, SEEK_SET);
362 
363  if (par->codec_id == AV_CODEC_ID_ADPCM_ADX) {
364  if (avio_rb16(pb) != 0x8000)
365  return AVERROR_INVALIDDATA;
366  extradata_size = avio_rb16(pb) + 4;
367  avio_seek(pb, -4, SEEK_CUR);
368  if (extradata_size < 12)
369  return AVERROR_INVALIDDATA;
370  extradata = av_malloc(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
371  if (!extradata)
372  return AVERROR(ENOMEM);
373  if (avio_read(pb, extradata, extradata_size) != extradata_size) {
374  av_free(extradata);
375  return AVERROR(EIO);
376  }
377  memset(extradata + extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
378  }
379  }
380 
381  ret = av_get_packet(pb, pkt, size);
382  if (ret != size) {
383  av_free(extradata);
384  return ret < 0 ? ret : AVERROR(EIO);
385  }
386  pkt->duration = 1;
387  pkt->stream_index = 0;
388  pkt->pts = get_pts(s, pkt->pos, size);
389 
390  if (extradata) {
391  ret = av_packet_add_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, extradata, extradata_size);
392  if (ret < 0) {
393  av_free(extradata);
394  return ret;
395  }
396  }
397 
398  return ret;
399 }
400 
402 {
403  AAXContext *a = s->priv_data;
404 
405  av_freep(&a->segments);
406  av_freep(&a->xcolumns);
407  av_freep(&a->string_table);
408 
409  return 0;
410 }
411 
413  .name = "aax",
414  .long_name = NULL_IF_CONFIG_SMALL("CRI AAX"),
415  .priv_data_size = sizeof(AAXContext),
420  .extensions = "aax",
422 };
AAXSegment::start
int64_t start
Definition: aaxdec.c:36
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:74
r
const char * r
Definition: vf_curves.c:116
AVERROR
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
AAXSegment::end
int64_t end
Definition: aaxdec.c:37
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4509
COLUMN_TYPE_DOUBLE
@ COLUMN_TYPE_DOUBLE
Definition: aaxdec.c:91
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
ff_get_extradata
int ff_get_extradata(AVFormatContext *s, 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...
Definition: utils.c:3332
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:52
AAXContext::segments
AAXSegment * segments
Definition: aaxdec.c:57
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:55
COLUMN_TYPE_UNDEFINED
@ COLUMN_TYPE_UNDEFINED
Definition: aaxdec.c:95
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:387
aax_probe
static int aax_probe(const AVProbeData *p)
Definition: aaxdec.c:60
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:453
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
av_packet_add_side_data
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.
Definition: avpacket.c:309
fail
#define fail()
Definition: checkasm.h:133
COLUMN_TYPE_UINT128
@ COLUMN_TYPE_UINT128
Definition: aaxdec.c:94
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:557
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:463
type
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
Definition: writing_filters.txt:86
pts
static int64_t pts
Definition: transcode_aac.c:652
COLUMN_TYPE_SINT32
@ COLUMN_TYPE_SINT32
Definition: aaxdec.c:87
aax_read_packet
static int aax_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aaxdec.c:330
AAXContext::columns
uint16_t columns
Definition: aaxdec.c:47
avassert.h
AAXContext::string_table
char * string_table
Definition: aaxdec.c:52
aax_read_close
static int aax_read_close(AVFormatContext *s)
Definition: aaxdec.c:401
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:781
pkt
AVPacket * pkt
Definition: movenc.c:59
AAXColumn
Definition: aaxdec.c:27
AVInputFormat
Definition: avformat.h:640
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:443
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
info
MIPS optimizations info
Definition: mips.txt:2
COLUMN_TYPE_SINT16
@ COLUMN_TYPE_SINT16
Definition: aaxdec.c:85
AAXContext::current_segment
uint32_t current_segment
Definition: aaxdec.c:54
AVFormatContext
Format I/O context.
Definition: avformat.h:1232
internal.h
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
get_pts
static int64_t get_pts(AVFormatContext *s, int64_t pos, int size)
Definition: aaxdec.c:98
NULL
#define NULL
Definition: coverity.c:32
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
COLUMN_TYPE_SINT64
@ COLUMN_TYPE_SINT64
Definition: aaxdec.c:89
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:441
AAXColumn::name
const char * name
Definition: aaxdec.c:30
COLUMN_FLAG_DEFAULT
@ COLUMN_FLAG_DEFAULT
Definition: aaxdec.c:76
COLUMN_TYPE_UINT8
@ COLUMN_TYPE_UINT8
Definition: aaxdec.c:82
c
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
Definition: undefined.txt:32
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:170
COLUMN_TYPE_UINT64
@ COLUMN_TYPE_UINT64
Definition: aaxdec.c:88
AAXContext::table_size
int64_t table_size
Definition: aaxdec.c:41
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
AV_CODEC_ID_ADPCM_ADX
@ AV_CODEC_ID_ADPCM_ADX
Definition: codec_id.h:362
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4945
ColumnFlag
ColumnFlag
Definition: aaxdec.c:74
COLUMN_FLAG_ROW
@ COLUMN_FLAG_ROW
Definition: aaxdec.c:77
size
int size
Definition: twinvq_data.h:10344
AAXContext::rows_offset
int64_t rows_offset
Definition: aaxdec.c:43
AV_RB32
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
Definition: bytestream.h:96
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: common.h:479
COLUMN_TYPE_VLDATA
@ COLUMN_TYPE_VLDATA
Definition: aaxdec.c:93
AAXContext::strings_offset
int64_t strings_offset
Definition: aaxdec.c:44
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:624
a
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
Definition: undefined.txt:41
offset
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
Definition: writing_filters.txt:86
AAXContext::data_offset
int64_t data_offset
Definition: aaxdec.c:45
AAXContext::name_offset
int64_t name_offset
Definition: aaxdec.c:46
AAXSegment
Definition: aaxdec.c:35
flag
#define flag(name)
Definition: cbs_av1.c:553
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:362
AAXColumn::type
uint8_t type
Definition: aaxdec.c:29
COLUMN_FLAG_UNDEFINED
@ COLUMN_FLAG_UNDEFINED
Definition: aaxdec.c:78
COLUMN_TYPE_STRING
@ COLUMN_TYPE_STRING
Definition: aaxdec.c:92
uint8_t
uint8_t
Definition: audio_convert.c:194
AAXContext::schema_offset
int64_t schema_offset
Definition: aaxdec.c:50
av_get_packet
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:310
AAXColumn::size
int size
Definition: aaxdec.c:32
ret
ret
Definition: filter_design.txt:187
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
AVStream
Stream structure.
Definition: avformat.h:873
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:253
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:766
COLUMN_TYPE_FLOAT
@ COLUMN_TYPE_FLOAT
Definition: aaxdec.c:90
pos
unsigned int pos
Definition: spdifenc.c:412
avformat.h
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: avcodec.h:215
AAXColumn::flag
uint8_t flag
Definition: aaxdec.c:28
COLUMN_TYPE_SINT8
@ COLUMN_TYPE_SINT8
Definition: aaxdec.c:83
AAXContext::strings_size
int64_t strings_size
Definition: aaxdec.c:51
aax_read_header
static int aax_read_header(AVFormatContext *s)
Definition: aaxdec.c:111
COLUMN_TYPE_UINT16
@ COLUMN_TYPE_UINT16
Definition: aaxdec.c:84
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
Definition: mem.c:245
AV_PKT_DATA_NEW_EXTRADATA
@ 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...
Definition: packet.h:55
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:633
AV_RB8
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
Definition: bytestream.h:99
AVPacket::stream_index
int stream_index
Definition: packet.h:371
AAXContext
Definition: aaxdec.c:40
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:337
AAXContext::row_width
uint16_t row_width
Definition: aaxdec.c:48
AAXContext::version
uint16_t version
Definition: aaxdec.c:42
COLUMN_TYPE_UINT32
@ COLUMN_TYPE_UINT32
Definition: aaxdec.c:86
ColumnType
ColumnType
Definition: aaxdec.c:81
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
AVPacket
This structure stores compressed data.
Definition: packet.h:346
AAXContext::nb_segments
uint32_t nb_segments
Definition: aaxdec.c:49
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: packet.h:389
COLUMN_FLAG_NAME
@ COLUMN_FLAG_NAME
Definition: aaxdec.c:75
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
ff_aax_demuxer
AVInputFormat ff_aax_demuxer
Definition: aaxdec.c:412
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
AVStream::start_time
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition: avformat.h:912
AAXColumn::offset
uint32_t offset
Definition: aaxdec.c:31
AV_RB16
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
Definition: bytestream.h:98
AAXContext::xcolumns
AAXColumn * xcolumns
Definition: aaxdec.c:56
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:364