FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
aadec.c File Reference
#include "avformat.h"
#include "internal.h"
#include "libavutil/dict.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/tea.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Data Structures

struct  AADemuxContext
 

Macros

#define AA_MAGIC   1469084982 /* this identifies an audible .aa file */
 
#define MAX_CODEC_SECOND_SIZE   3982
 
#define MAX_TOC_ENTRIES   16
 
#define MAX_DICTIONARY_ENTRIES   128
 
#define TEA_BLOCK_SIZE   8
 
#define CHAPTER_HEADER_SIZE   8
 
#define TIMEPREC   1000
 
#define MP3_FRAME_SIZE   104
 
#define OFFSET(x)   offsetof(AADemuxContext, x)
 

Functions

static int get_second_size (char *codec_name)
 
static int aa_read_header (AVFormatContext *s)
 
static int aa_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int aa_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 
static int aa_probe (AVProbeData *p)
 
static int aa_read_close (AVFormatContext *s)
 

Variables

static const AVOption aa_options []
 
static const AVClass aa_class
 
AVInputFormat ff_aa_demuxer
 

Macro Definition Documentation

#define AA_MAGIC   1469084982 /* this identifies an audible .aa file */

Definition at line 33 of file aadec.c.

Referenced by aa_probe().

#define MAX_CODEC_SECOND_SIZE   3982

Definition at line 34 of file aadec.c.

Referenced by aa_read_packet().

#define MAX_TOC_ENTRIES   16

Definition at line 35 of file aadec.c.

Referenced by aa_read_header().

#define MAX_DICTIONARY_ENTRIES   128

Definition at line 36 of file aadec.c.

Referenced by aa_read_header().

#define TEA_BLOCK_SIZE   8

Definition at line 37 of file aadec.c.

Referenced by aa_read_header(), and aa_read_packet().

#define CHAPTER_HEADER_SIZE   8

Definition at line 38 of file aadec.c.

Referenced by aa_read_header(), and aa_read_seek().

#define TIMEPREC   1000

Definition at line 39 of file aadec.c.

Referenced by aa_read_header(), and aa_read_seek().

#define MP3_FRAME_SIZE   104

Definition at line 40 of file aadec.c.

Referenced by aa_read_seek().

#define OFFSET (   x)    offsetof(AADemuxContext, x)

Definition at line 383 of file aadec.c.

Function Documentation

static int get_second_size ( char *  codec_name)
static

Definition at line 57 of file aadec.c.

Referenced by aa_read_header().

static int aa_read_header ( AVFormatContext s)
static

Definition at line 72 of file aadec.c.

static int aa_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 239 of file aadec.c.

static int aa_read_seek ( AVFormatContext s,
int  stream_index,
int64_t  timestamp,
int  flags 
)
static

Definition at line 313 of file aadec.c.

static int aa_probe ( AVProbeData p)
static

Definition at line 363 of file aadec.c.

static int aa_read_close ( AVFormatContext s)
static

Definition at line 374 of file aadec.c.

Variable Documentation

const AVOption aa_options[]
static
Initial value:
= {
{ "aa_fixed_key",
"Fixed key used for handling Audible AA files", OFFSET(aa_fixed_key),
AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd2a51d673"},
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: aadec.c:383
offset must point to a pointer immediately followed by an int for the length
Definition: opt.h:229
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:277

Definition at line 384 of file aadec.c.

const AVClass aa_class
static
Initial value:
= {
.class_name = "aa",
.item_name = av_default_item_name,
.option = aa_options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
static const AVOption aa_options[]
Definition: aadec.c:384

Definition at line 392 of file aadec.c.

AVInputFormat ff_aa_demuxer
Initial value:
= {
.name = "aa",
.long_name = NULL_IF_CONFIG_SMALL("Audible AA format files"),
.priv_class = &aa_class,
.priv_data_size = sizeof(AADemuxContext),
.extensions = "aa",
}
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
static int aa_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aadec.c:239
static int aa_probe(AVProbeData *p)
Definition: aadec.c:363
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static int aa_read_header(AVFormatContext *s)
Definition: aadec.c:72
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
static int aa_read_close(AVFormatContext *s)
Definition: aadec.c:374
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AVFMT_NOGENSEARCH
Format does not allow to fall back on generic search.
Definition: avformat.h:476
static const AVClass aa_class
Definition: aadec.c:392
#define flags(name, subs,...)
Definition: cbs_av1.c:596
#define AVFMT_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition: avformat.h:477
static int aa_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: aadec.c:313

Definition at line 399 of file aadec.c.