FFmpeg
|
#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 |
#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) |
|
static |
Definition at line 57 of file aadec.c.
Referenced by aa_read_header().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
AVInputFormat ff_aa_demuxer |