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/intreadwrite.h"
23 #include "avformat.h"
24 #include "avio_internal.h"
25 #include "internal.h"
26 
27 typedef struct AAXColumn {
28  uint8_t flag;
29  uint8_t type;
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  return AVERROR(ENOMEM);
156 
157  a->string_table = av_calloc(a->strings_size + 1, sizeof(*a->string_table));
158  if (!a->string_table)
159  return AVERROR(ENOMEM);
160 
161  for (int c = 0; c < a->columns; c++) {
162  uint8_t info = avio_r8(pb);
163  uint32_t offset = avio_rb32(pb);
164  int value_size;
165 
166  if (offset >= a->strings_size)
167  return AVERROR_INVALIDDATA;
168 
169  a->xcolumns[c].flag = info >> 4;
170  a->xcolumns[c].type = info & 0x0F;
171 
172  switch (a->xcolumns[c].type) {
173  case COLUMN_TYPE_UINT8:
174  case COLUMN_TYPE_SINT8:
175  value_size = 0x01;
176  break;
177  case COLUMN_TYPE_UINT16:
178  case COLUMN_TYPE_SINT16:
179  value_size = 0x02;
180  break;
181  case COLUMN_TYPE_UINT32:
182  case COLUMN_TYPE_SINT32:
183  case COLUMN_TYPE_FLOAT:
184  case COLUMN_TYPE_STRING:
185  value_size = 0x04;
186  break;
187  case COLUMN_TYPE_VLDATA:
188  value_size = 0x08;
189  break;
190  case COLUMN_TYPE_UINT128:
191  value_size = 0x10;
192  break;
193  default:
194  return AVERROR_INVALIDDATA;
195  }
196 
197  a->xcolumns[c].size = value_size;
198 
199  if (a->xcolumns[c].flag & COLUMN_FLAG_NAME)
200  a->xcolumns[c].name = a->string_table + offset;
201 
202  if (a->xcolumns[c].flag & COLUMN_FLAG_DEFAULT) {
203  /* data is found relative to columns start */
204  a->xcolumns[c].offset = avio_tell(pb) - a->schema_offset;
205  avio_skip(pb, value_size);
206  }
207 
208  if (a->xcolumns[c].flag & COLUMN_FLAG_ROW) {
209  /* data is found relative to row start */
210  a->xcolumns[c].offset = column_offset;
211  column_offset += value_size;
212  }
213  }
214 
215  ret = ret64 = avio_seek(pb, a->strings_offset, SEEK_SET);
216  if (ret64 < 0)
217  return ret;
218 
219  ret = ffio_read_size(pb, a->string_table, a->strings_size);
220  if (ret < 0)
221  return ret;
222 
223  for (int c = 0; c < a->columns; c++) {
224  int64_t data_offset = 0;
225  int64_t col_offset;
226  int flag, type;
227 
228  if (!a->xcolumns[c].name || strcmp(a->xcolumns[c].name, "data"))
229  continue;
230 
231  type = a->xcolumns[c].type;
232  flag = a->xcolumns[c].flag;
233  col_offset = a->xcolumns[c].offset;
234 
235  for (uint64_t r = 0; r < a->nb_segments; r++) {
236  if (flag & COLUMN_FLAG_DEFAULT) {
237  data_offset = a->schema_offset + col_offset;
238  } else if (flag & COLUMN_FLAG_ROW) {
239  data_offset = a->rows_offset + r * a->row_width + col_offset;
240  } else
241  return AVERROR_INVALIDDATA;
242 
243  ret = ret64 = avio_seek(pb, data_offset, SEEK_SET);
244  if (ret64 < 0)
245  return ret;
246 
247  if (type == COLUMN_TYPE_VLDATA) {
248  int64_t start, size;
249 
250  start = avio_rb32(pb);
251  size = avio_rb32(pb);
252  a->segments[r].start = start + a->data_offset;
253  a->segments[r].end = a->segments[r].start + size;
254  } else
255  return AVERROR_INVALIDDATA;
256  }
257  }
258 
259  if (!a->segments[0].end)
260  return AVERROR_INVALIDDATA;
261 
262  st = avformat_new_stream(s, NULL);
263  if (!st)
264  return AVERROR(ENOMEM);
265  st->start_time = 0;
266  par = s->streams[0]->codecpar;
268 
269  codec = a->string_table + a->name_offset;
270  if (!strcmp(codec, "AAX")) {
272  ret64 = avio_seek(pb, a->segments[0].start, SEEK_SET);
273  if (ret64 < 0 || avio_rb16(pb) != 0x8000)
274  return AVERROR_INVALIDDATA;
275  extradata_size = avio_rb16(pb) + 4;
276  if (extradata_size < 12)
277  return AVERROR_INVALIDDATA;
278  avio_seek(pb, -4, SEEK_CUR);
279  ret = ff_get_extradata(s, par, pb, extradata_size);
280  if (ret < 0)
281  return ret;
282  par->channels = AV_RB8 (par->extradata + 7);
283  par->sample_rate = AV_RB32(par->extradata + 8);
284  if (!par->channels || !par->sample_rate)
285  return AVERROR_INVALIDDATA;
286 
287  avpriv_set_pts_info(st, 64, 32, par->sample_rate);
288  /*} else if (!strcmp(codec, "HCA") ){
289  par->codec_id = AV_CODEC_ID_HCA;*/
290  } else {
291  return AVERROR_INVALIDDATA;
292  }
293 
294  return 0;
295 }
296 
298 {
299  AAXContext *a = s->priv_data;
300  AVCodecParameters *par = s->streams[0]->codecpar;
301  AVIOContext *pb = s->pb;
302  const int size = 18 * par->channels;
303  int ret, extradata_size = 0;
304  uint8_t *extradata = NULL;
305  int skip = 0;
306 
307  if (avio_feof(pb))
308  return AVERROR_EOF;
309 
310  pkt->pos = avio_tell(pb);
311 
312  for (uint32_t seg = 0; seg < a->nb_segments; seg++) {
313  int64_t start = a->segments[seg].start;
314  int64_t end = a->segments[seg].end;
315 
316  if (pkt->pos >= start && pkt->pos <= end) {
317  a->current_segment = seg;
318  if (par->codec_id == AV_CODEC_ID_ADPCM_ADX)
319  skip = (end - start) - ((end - start) / size) * size;
320  break;
321  }
322  }
323 
324  if (pkt->pos >= a->segments[a->current_segment].end - skip) {
325  if (a->current_segment + 1 == a->nb_segments)
326  return AVERROR_EOF;
327  a->current_segment++;
328  avio_seek(pb, a->segments[a->current_segment].start, SEEK_SET);
329 
330  if (par->codec_id == AV_CODEC_ID_ADPCM_ADX) {
331  if (avio_rb16(pb) != 0x8000)
332  return AVERROR_INVALIDDATA;
333  extradata_size = avio_rb16(pb) + 4;
334  avio_seek(pb, -4, SEEK_CUR);
335  if (extradata_size < 12)
336  return AVERROR_INVALIDDATA;
337  extradata = av_malloc(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
338  if (!extradata)
339  return AVERROR(ENOMEM);
340  if (avio_read(pb, extradata, extradata_size) != extradata_size) {
341  av_free(extradata);
342  return AVERROR(EIO);
343  }
344  memset(extradata + extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
345  }
346  }
347 
348  ret = av_get_packet(pb, pkt, size);
349  if (ret != size) {
350  av_free(extradata);
351  return ret < 0 ? ret : AVERROR(EIO);
352  }
353  pkt->duration = 1;
354  pkt->stream_index = 0;
355  pkt->pts = get_pts(s, pkt->pos, size);
356 
357  if (extradata) {
358  ret = av_packet_add_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, extradata, extradata_size);
359  if (ret < 0) {
360  av_free(extradata);
361  return ret;
362  }
363  }
364 
365  return ret;
366 }
367 
369 {
370  AAXContext *a = s->priv_data;
371 
372  av_freep(&a->segments);
373  av_freep(&a->xcolumns);
374  av_freep(&a->string_table);
375 
376  return 0;
377 }
378 
380  .name = "aax",
381  .long_name = NULL_IF_CONFIG_SMALL("CRI AAX"),
382  .priv_data_size = sizeof(AAXContext),
383  .flags_internal = FF_FMT_INIT_CLEANUP,
388  .extensions = "aax",
390 };
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
FF_FMT_INIT_CLEANUP
#define FF_FMT_INIT_CLEANUP
For an AVInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition: internal.h:49
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:768
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:469
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:57
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:391
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:459
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
av_packet_add_side_data
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:198
COLUMN_TYPE_UINT128
@ COLUMN_TYPE_UINT128
Definition: aaxdec.c:94
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:141
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:504
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:476
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:653
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:297
AAXContext::columns
uint16_t columns
Definition: aaxdec.c:47
AAXContext::string_table
char * string_table
Definition: aaxdec.c:52
aax_read_close
static int aax_read_close(AVFormatContext *s)
Definition: aaxdec.c:368
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:790
pkt
AVPacket * pkt
Definition: movenc.c:59
AAXColumn
Definition: aaxdec.c:27
AVInputFormat
Definition: avformat.h:650
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:655
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:449
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:1200
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:447
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
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
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
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
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:632
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
ff_aax_demuxer
const AVInputFormat ff_aax_demuxer
Definition: aaxdec.c:379
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:366
avio_internal.h
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
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.c:271
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:197
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:935
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:260
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:775
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: defs.h:40
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_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:641
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
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, 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:1196
AVPacket::stream_index
int stream_index
Definition: packet.h:375
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:347
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:350
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:393
COLUMN_FLAG_NAME
@ COLUMN_FLAG_NAME
Definition: aaxdec.c:75
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ffio_read_size
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:691
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:975
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:375