FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
aacdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "rawdec.h"
#include "id3v1.h"
#include "apetag.h"

Go to the source code of this file.

Functions

static int adts_aac_probe (AVProbeData *p)
 
static int adts_aac_read_header (AVFormatContext *s)
 

Variables

AVInputFormat ff_aac_demuxer
 

Function Documentation

static int adts_aac_probe ( AVProbeData p)
static

Definition at line 30 of file aacdec.c.

static int adts_aac_read_header ( AVFormatContext s)
static

Definition at line 79 of file aacdec.c.

Variable Documentation

AVInputFormat ff_aac_demuxer
Initial value:
= {
.name = "aac",
.long_name = NULL_IF_CONFIG_SMALL("raw ADTS AAC (Advanced Audio Coding)"),
.read_probe = adts_aac_probe,
.read_header = adts_aac_read_header,
.extensions = "aac",
.mime_type = "audio/aac,audio/aacp,audio/x-aac",
.raw_codec_id = AV_CODEC_ID_AAC,
}
static int adts_aac_read_header(AVFormatContext *s)
Definition: aacdec.c:79
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:473
static int adts_aac_probe(AVProbeData *p)
Definition: aacdec.c:30

Definition at line 105 of file aacdec.c.