FFmpeg
aadec.c
Go to the documentation of this file.
1 /*
2  * Audible AA demuxer
3  * Copyright (c) 2015 Vesselin Bontchev
4  *
5  * Header parsing is borrowed from https://github.com/jteeuwen/audible project.
6  * Copyright (c) 2001-2014, Jim Teeuwen
7  *
8  * Redistribution and use in source and binary forms, with or without modification,
9  * are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright notice, this
12  * list of conditions and the following disclaimer.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
21  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include "avformat.h"
27 #include "internal.h"
28 #include "libavutil/avstring.h"
29 #include "libavutil/dict.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/tea.h"
32 #include "libavutil/opt.h"
33 
34 #define AA_MAGIC 1469084982 /* this identifies an audible .aa file */
35 #define MAX_TOC_ENTRIES 16
36 #define MAX_DICTIONARY_ENTRIES 128
37 #define TEA_BLOCK_SIZE 8
38 #define CHAPTER_HEADER_SIZE 8
39 #define TIMEPREC 1000
40 #define MP3_FRAME_SIZE 104
41 
42 typedef struct AADemuxContext {
43  AVClass *class;
44  uint8_t *aa_fixed_key;
49  struct AVTEA *tea_ctx;
50  uint8_t file_key[16];
52  int64_t content_start;
53  int64_t content_end;
56 
57 static int get_second_size(char *codec_name)
58 {
59  int result = -1;
60 
61  if (!strcmp(codec_name, "mp332")) {
62  result = 3982;
63  } else if (!strcmp(codec_name, "acelp16")) {
64  result = 2000;
65  } else if (!strcmp(codec_name, "acelp85")) {
66  result = 1045;
67  }
68 
69  return result;
70 }
71 
73 {
74  int largest_idx = -1;
75  uint32_t toc_size, npairs, header_seed = 0, start;
76  char codec_name[64] = {0};
77  uint8_t buf[24];
78  int64_t largest_size = -1, current_size = -1, chapter_pos;
79  struct toc_entry {
80  uint32_t offset;
81  uint32_t size;
82  } TOC[MAX_TOC_ENTRIES];
83  uint8_t header_key[16] = {0};
84  AADemuxContext *c = s->priv_data;
85  char file_key[2 * sizeof(c->file_key) + 1];
86  AVIOContext *pb = s->pb;
87  AVStream *st;
88  FFStream *sti;
89  int ret;
90 
91  /* parse .aa header */
92  avio_skip(pb, 4); // file size
93  avio_skip(pb, 4); // magic string
94  toc_size = avio_rb32(pb); // TOC size
95  avio_skip(pb, 4); // unidentified integer
96  if (toc_size > MAX_TOC_ENTRIES || toc_size < 2)
97  return AVERROR_INVALIDDATA;
98  for (uint32_t i = 0; i < toc_size; i++) { // read TOC
99  avio_skip(pb, 4); // TOC entry index
100  TOC[i].offset = avio_rb32(pb); // block offset
101  TOC[i].size = avio_rb32(pb); // block size
102  }
103  avio_skip(pb, 24); // header termination block (ignored)
104  npairs = avio_rb32(pb); // read dictionary entries
105  if (npairs > MAX_DICTIONARY_ENTRIES)
106  return AVERROR_INVALIDDATA;
107  for (uint32_t i = 0; i < npairs; i++) {
108  char key[128], val[128];
109  uint32_t nkey, nval;
110 
111  avio_skip(pb, 1); // unidentified integer
112  nkey = avio_rb32(pb); // key string length
113  nval = avio_rb32(pb); // value string length
114  avio_get_str(pb, nkey, key, sizeof(key));
115  avio_get_str(pb, nval, val, sizeof(val));
116  if (!strcmp(key, "codec")) {
117  av_log(s, AV_LOG_DEBUG, "Codec is <%s>\n", val);
118  av_strlcpy(codec_name, val, sizeof(codec_name));
119  } else if (!strcmp(key, "HeaderSeed")) {
120  av_log(s, AV_LOG_DEBUG, "HeaderSeed is <%s>\n", val);
121  header_seed = atoi(val);
122  } else if (!strcmp(key, "HeaderKey")) { // this looks like "1234567890 1234567890 1234567890 1234567890"
123  uint32_t header_key_part[4];
124  av_log(s, AV_LOG_DEBUG, "HeaderKey is <%s>\n", val);
125 
126  ret = sscanf(val, "%"SCNu32"%"SCNu32"%"SCNu32"%"SCNu32,
127  &header_key_part[0], &header_key_part[1], &header_key_part[2], &header_key_part[3]);
128  if (ret != 4)
129  return AVERROR_INVALIDDATA;
130 
131  for (int idx = 0; idx < 4; idx++)
132  AV_WB32(&header_key[idx * 4], header_key_part[idx]); // convert each part to BE!
133  ff_data_to_hex(key, header_key, sizeof(header_key), 1);
134  av_log(s, AV_LOG_DEBUG, "Processed HeaderKey is %s\n", key);
135  } else {
136  av_dict_set(&s->metadata, key, val, 0);
137  }
138  }
139 
140  /* verify fixed key */
141  if (c->aa_fixed_key_len != 16) {
142  av_log(s, AV_LOG_ERROR, "aa_fixed_key value needs to be 16 bytes!\n");
143  return AVERROR(EINVAL);
144  }
145 
146  /* verify codec */
147  if ((c->codec_second_size = get_second_size(codec_name)) == -1) {
148  av_log(s, AV_LOG_ERROR, "unknown codec <%s>!\n", codec_name);
149  return AVERROR(EINVAL);
150  }
151 
152  /* decryption key derivation */
153  c->tea_ctx = av_tea_alloc();
154  if (!c->tea_ctx)
155  return AVERROR(ENOMEM);
156  av_tea_init(c->tea_ctx, c->aa_fixed_key, 16);
157  for (int i = 0; i < 6; i++)
158  AV_WB32(buf + 4 * i, header_seed + i);
159  av_tea_crypt(c->tea_ctx, buf, buf, 3, NULL, 0);
160  AV_WN64(c->file_key, AV_RN64(buf + 2) ^ AV_RN64(header_key));
161  AV_WN64(c->file_key + 8, AV_RN64(buf + 10) ^ AV_RN64(header_key + 8));
162  ff_data_to_hex(file_key, c->file_key, sizeof(c->file_key), 1);
163  av_log(s, AV_LOG_DEBUG, "File key is %s\n", file_key);
164  av_tea_init(c->tea_ctx, c->file_key, 16);
165 
166  /* decoder setup */
167  st = avformat_new_stream(s, NULL);
168  if (!st)
169  return AVERROR(ENOMEM);
170  sti = ffstream(st);
172  if (!strcmp(codec_name, "mp332")) {
174  st->codecpar->sample_rate = 22050;
176  avpriv_set_pts_info(st, 64, 8, 32000 * TIMEPREC);
177  // encoded audio frame is MP3_FRAME_SIZE bytes (+1 with padding, unlikely)
178  } else if (!strcmp(codec_name, "acelp85")) {
180  st->codecpar->block_align = 19;
181  st->codecpar->channels = 1;
182  st->codecpar->sample_rate = 8500;
183  st->codecpar->bit_rate = 8500;
185  avpriv_set_pts_info(st, 64, 8, 8500 * TIMEPREC);
186  } else if (!strcmp(codec_name, "acelp16")) {
188  st->codecpar->block_align = 20;
189  st->codecpar->channels = 1;
190  st->codecpar->sample_rate = 16000;
191  st->codecpar->bit_rate = 16000;
193  avpriv_set_pts_info(st, 64, 8, 16000 * TIMEPREC);
194  }
195 
196  /* determine, and jump to audio start offset */
197  for (uint32_t i = 1; i < toc_size; i++) { // skip the first entry!
198  current_size = TOC[i].size;
199  if (current_size > largest_size) {
200  largest_idx = i;
201  largest_size = current_size;
202  }
203  }
204  start = TOC[largest_idx].offset;
205  avio_seek(pb, start, SEEK_SET);
206 
207  // extract chapter positions. since all formats have constant bit rate, use it
208  // as time base in bytes/s, for easy stream position <-> timestamp conversion
209  st->start_time = 0;
210  c->content_start = start;
211  c->content_end = start + largest_size;
212 
213  while ((chapter_pos = avio_tell(pb)) >= 0 && chapter_pos < c->content_end) {
214  unsigned chapter_idx = s->nb_chapters;
215  uint32_t chapter_size = avio_rb32(pb);
216  if (chapter_size == 0 || avio_feof(pb))
217  break;
218  chapter_pos -= start + CHAPTER_HEADER_SIZE * chapter_idx;
219  avio_skip(pb, 4 + chapter_size);
220  if (!avpriv_new_chapter(s, chapter_idx, st->time_base,
221  chapter_pos * TIMEPREC,
222  (chapter_pos + chapter_size) * TIMEPREC, NULL))
223  return AVERROR(ENOMEM);
224  }
225 
226  st->duration = (largest_size - CHAPTER_HEADER_SIZE * s->nb_chapters) * TIMEPREC;
227 
228  avpriv_update_cur_dts(s, st, 0);
229  avio_seek(pb, start, SEEK_SET);
230  c->current_chapter_size = 0;
231  c->seek_offset = 0;
232 
233  return 0;
234 }
235 
237 {
238  int ret;
239  AADemuxContext *c = s->priv_data;
240  uint64_t pos = avio_tell(s->pb);
241 
242  // are we at the end of the audio content?
243  if (pos >= c->content_end) {
244  return AVERROR_EOF;
245  }
246 
247  // are we at the start of a chapter?
248  if (c->current_chapter_size == 0) {
249  c->current_chapter_size = avio_rb32(s->pb);
250  if (c->current_chapter_size == 0) {
251  return AVERROR_EOF;
252  }
253  av_log(s, AV_LOG_DEBUG, "Chapter %d (%" PRId64 " bytes)\n", c->chapter_idx, c->current_chapter_size);
254  c->chapter_idx = c->chapter_idx + 1;
255  avio_skip(s->pb, 4); // data start offset
256  c->current_codec_second_size = c->codec_second_size;
257  }
258 
259  // is this the last block in this chapter?
260  if (c->current_chapter_size / c->current_codec_second_size == 0) {
261  c->current_codec_second_size = c->current_chapter_size % c->current_codec_second_size;
262  }
263 
264  ret = av_get_packet(s->pb, pkt, c->current_codec_second_size);
265  if (ret != c->current_codec_second_size)
266  return AVERROR_EOF;
267 
268  // decrypt c->current_codec_second_size bytes in blocks of TEA_BLOCK_SIZE
269  // trailing bytes are left unencrypted!
270  av_tea_crypt(c->tea_ctx, pkt->data, pkt->data,
271  c->current_codec_second_size / TEA_BLOCK_SIZE, NULL, 1);
272 
273  // update state
274  c->current_chapter_size = c->current_chapter_size - c->current_codec_second_size;
275  if (c->current_chapter_size <= 0)
276  c->current_chapter_size = 0;
277 
278  if (c->seek_offset > c->current_codec_second_size)
279  c->seek_offset = 0; // ignore wrong estimate
280  pkt->data += c->seek_offset;
281  pkt->size -= c->seek_offset;
282  c->seek_offset = 0;
283 
284  return 0;
285 }
286 
288  int stream_index, int64_t timestamp, int flags)
289 {
290  AADemuxContext *c = s->priv_data;
291  AVChapter *ch;
292  int64_t chapter_pos, chapter_start, chapter_size;
293  int chapter_idx = 0;
294 
295  // find chapter containing seek timestamp
296  if (timestamp < 0)
297  timestamp = 0;
298 
299  while (chapter_idx < s->nb_chapters && timestamp >= s->chapters[chapter_idx]->end) {
300  ++chapter_idx;
301  }
302 
303  if (chapter_idx >= s->nb_chapters) {
304  chapter_idx = s->nb_chapters - 1;
305  if (chapter_idx < 0) return -1; // there is no chapter.
306  timestamp = s->chapters[chapter_idx]->end;
307  }
308 
309  ch = s->chapters[chapter_idx];
310 
311  // sync by clamping timestamp to nearest valid block position in its chapter
312  chapter_size = ch->end / TIMEPREC - ch->start / TIMEPREC;
313  chapter_pos = av_rescale_rnd((timestamp - ch->start) / TIMEPREC,
314  1, c->codec_second_size,
316  * c->codec_second_size;
317  if (chapter_pos >= chapter_size)
318  chapter_pos = chapter_size;
319  chapter_start = c->content_start + (ch->start / TIMEPREC) + CHAPTER_HEADER_SIZE * (1 + chapter_idx);
320 
321  // reinit read state
322  avio_seek(s->pb, chapter_start + chapter_pos, SEEK_SET);
323  c->current_codec_second_size = c->codec_second_size;
324  c->current_chapter_size = chapter_size - chapter_pos;
325  c->chapter_idx = 1 + chapter_idx;
326 
327  // for unaligned frames, estimate offset of first frame in block (assume no padding)
328  if (s->streams[0]->codecpar->codec_id == AV_CODEC_ID_MP3) {
329  c->seek_offset = (MP3_FRAME_SIZE - chapter_pos % MP3_FRAME_SIZE) % MP3_FRAME_SIZE;
330  }
331 
332  avpriv_update_cur_dts(s, s->streams[0], ch->start + (chapter_pos + c->seek_offset) * TIMEPREC);
333 
334  return 1;
335 }
336 
337 static int aa_probe(const AVProbeData *p)
338 {
339  uint8_t *buf = p->buf;
340 
341  // first 4 bytes are file size, next 4 bytes are the magic
342  if (AV_RB32(buf+4) != AA_MAGIC)
343  return 0;
344 
345  return AVPROBE_SCORE_MAX / 2;
346 }
347 
349 {
350  AADemuxContext *c = s->priv_data;
351 
352  av_freep(&c->tea_ctx);
353 
354  return 0;
355 }
356 
357 #define OFFSET(x) offsetof(AADemuxContext, x)
358 static const AVOption aa_options[] = {
359  { "aa_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
360  "Fixed key used for handling Audible AA files", OFFSET(aa_fixed_key),
361  AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd2a51d673"},
362  .flags = AV_OPT_FLAG_DECODING_PARAM },
363  { NULL },
364 };
365 
366 static const AVClass aa_class = {
367  .class_name = "aa",
368  .item_name = av_default_item_name,
369  .option = aa_options,
370  .version = LIBAVUTIL_VERSION_INT,
371 };
372 
374  .name = "aa",
375  .long_name = NULL_IF_CONFIG_SMALL("Audible AA format files"),
376  .priv_class = &aa_class,
377  .priv_data_size = sizeof(AADemuxContext),
378  .extensions = "aa",
379  .read_probe = aa_probe,
385  .flags_internal = FF_FMT_INIT_CLEANUP,
386 };
AADemuxContext::content_end
int64_t content_end
Definition: aadec.c:53
AVFMT_NO_BYTE_SEEK
#define AVFMT_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition: avformat.h:483
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
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
opt.h
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:768
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
aa_read_packet
static int aa_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aadec.c:236
TIMEPREC
#define TIMEPREC
Definition: aadec.c:39
AV_RN64
#define AV_RN64(p)
Definition: intreadwrite.h:368
AVPacket::data
uint8_t * data
Definition: packet.h:373
AVOption
AVOption.
Definition: opt.h:247
AVChapter::start
int64_t start
Definition: avformat.h:1162
aa_read_seek
static int aa_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: aadec.c:287
av_tea_crypt
void av_tea_crypt(AVTEA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
Encrypt or decrypt a buffer using a previously initialized context.
Definition: tea.c:95
aa_read_close
static int aa_read_close(AVFormatContext *s)
Definition: aadec.c:348
aa_class
static const AVClass aa_class
Definition: aadec.c:366
AADemuxContext::tea_ctx
struct AVTEA * tea_ctx
Definition: aadec.c:49
AADemuxContext::aa_fixed_key
uint8_t * aa_fixed_key
Definition: aadec.c:44
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:459
AADemuxContext::aa_fixed_key_len
int aa_fixed_key_len
Definition: aadec.c:45
AADemuxContext::codec_second_size
int codec_second_size
Definition: aadec.c:46
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
MAX_DICTIONARY_ENTRIES
#define MAX_DICTIONARY_ENTRIES
Definition: aadec.c:36
AV_OPT_TYPE_BINARY
@ AV_OPT_TYPE_BINARY
offset must point to a pointer immediately followed by an int for the length
Definition: opt.h:230
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:432
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:149
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
AVChapter
Definition: avformat.h:1159
val
static double val(void *priv, double ch)
Definition: aeval.c:76
AV_ROUND_UP
@ AV_ROUND_UP
Round toward +infinity.
Definition: mathematics.h:83
AV_CODEC_ID_MP3
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: codec_id.h:424
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:985
ff_data_to_hex
char * ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase)
Write hexadecimal string corresponding to given binary data.
Definition: utils.c:1147
AV_CODEC_ID_SIPR
@ AV_CODEC_ID_SIPR
Definition: codec_id.h:464
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:790
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AVInputFormat
Definition: avformat.h:650
tea.h
Public header for libavutil TEA algorithm.
AVChapter::end
int64_t end
chapter start/end time in time_base units
Definition: avformat.h:1162
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
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
AA_MAGIC
#define AA_MAGIC
Definition: aadec.c:34
key
const char * key
Definition: hwcontext_opencl.c:168
aa_options
static const AVOption aa_options[]
Definition: aadec.c:358
aa_probe
static int aa_probe(const AVProbeData *p)
Definition: aadec.c:337
FFStream::need_parsing
enum AVStreamParseType need_parsing
Definition: internal.h:405
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
avpriv_update_cur_dts
void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
Update cur_dts of all streams based on the given timestamp and AVStream.
Definition: seek.c:32
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1095
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVSEEK_FLAG_BACKWARD
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2275
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
result
and forward the result(frame or status change) to the corresponding input. If nothing is possible
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:965
NULL
#define NULL
Definition: coverity.c:32
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:447
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
AV_WB32
#define AV_WB32(p, v)
Definition: intreadwrite.h:419
av_rescale_rnd
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
Definition: mathematics.c:57
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
AVPacket::size
int size
Definition: packet.h:374
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
get_second_size
static int get_second_size(char *codec_name)
Definition: aadec.c:57
FFStream
Definition: internal.h:194
avio_get_str
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
Definition: aviobuf.c:895
size
int size
Definition: twinvq_data.h:10344
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
MP3_FRAME_SIZE
#define MP3_FRAME_SIZE
Definition: aadec.c:40
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
AADemuxContext::current_chapter_size
int64_t current_chapter_size
Definition: aadec.c:51
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
TEA_BLOCK_SIZE
#define TEA_BLOCK_SIZE
Definition: aadec.c:37
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:177
aa_read_header
static int aa_read_header(AVFormatContext *s)
Definition: aadec.c:72
OFFSET
#define OFFSET(x)
Definition: aadec.c:357
AV_ROUND_DOWN
@ AV_ROUND_DOWN
Round toward -infinity.
Definition: mathematics.h:82
MAX_TOC_ENTRIES
#define MAX_TOC_ENTRIES
Definition: aadec.c:35
AV_OPT_FLAG_DECODING_PARAM
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:278
avpriv_new_chapter
AVChapter * avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, int64_t start, int64_t end, const char *title)
Add a new chapter.
Definition: utils.c:883
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
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
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
av_tea_init
void av_tea_init(AVTEA *ctx, const uint8_t key[16], int rounds)
Initialize an AVTEA context.
Definition: tea.c:42
pos
unsigned int pos
Definition: spdifenc.c:412
avformat.h
dict.h
AADemuxContext::chapter_idx
int chapter_idx
Definition: aadec.c:48
av_tea_alloc
struct AVTEA * av_tea_alloc(void)
Allocate an AVTEA context To free the struct: av_free(ptr)
Definition: tea.c:35
AVFMT_NOGENSEARCH
#define AVFMT_NOGENSEARCH
Format does not allow to fall back on generic search.
Definition: avformat.h:482
AVSTREAM_PARSE_FULL_RAW
@ AVSTREAM_PARSE_FULL_RAW
full parsing and repack with timestamp and position generation by parser for raw this assumes that ea...
Definition: avformat.h:796
AADemuxContext::seek_offset
int seek_offset
Definition: aadec.c:54
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
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:347
AADemuxContext::file_key
uint8_t file_key[16]
Definition: aadec.c:50
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
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
av_strlcpy
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:89
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AV_WN64
#define AV_WN64(p, v)
Definition: intreadwrite.h:380
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
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
avstring.h
AADemuxContext::content_start
int64_t content_start
Definition: aadec.c:52
CHAPTER_HEADER_SIZE
#define CHAPTER_HEADER_SIZE
Definition: aadec.c:38
AADemuxContext::current_codec_second_size
int current_codec_second_size
Definition: aadec.c:47
AADemuxContext
Definition: aadec.c:42
AVTEA
Definition: tea.c:30
ff_aa_demuxer
const AVInputFormat ff_aa_demuxer
Definition: aadec.c:373
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:375