mpegaudiodecheader.h File Reference

MPEG Audio header decoder. More...

#include "avcodec.h"

Go to the source code of this file.

Data Structures

struct  MPADecodeHeader

Macros

#define MP3_MASK   0xFFFE0CCF
#define MPA_DECODE_HEADER

Typedefs

typedef struct MPADecodeHeader MPADecodeHeader

Functions

int avpriv_mpegaudio_decode_header (MPADecodeHeader *s, uint32_t header)
int avpriv_mpa_decode_header (AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bitrate)
static int ff_mpa_check_header (uint32_t header)

Detailed Description

MPEG Audio header decoder.

Definition in file mpegaudiodecheader.h.

Macro Definition Documentation

#define MP3_MASK   0xFFFE0CCF

Definition at line 32 of file mpegaudiodecheader.h.

Referenced by mp3_header_compress(), and mp3_header_decompress().

#define MPA_DECODE_HEADER
Value:
int frame_size; \
int error_protection; \
int layer; \
int sample_rate; \
int sample_rate_index; /* between 0 and 8 */ \
int bit_rate; \
int nb_channels; \
int mode; \
int mode_ext; \
int lsf;

Definition at line 34 of file mpegaudiodecheader.h.

Typedef Documentation

Function Documentation

int avpriv_mpa_decode_header ( AVCodecContext avctx,
uint32_t  head,
int *  sample_rate,
int *  channels,
int *  frame_size,
int *  bitrate 
)

Definition at line 112 of file mpegaudiodecheader.c.

Referenced by mp3_read_probe(), and mpegaudio_parse().

int avpriv_mpegaudio_decode_header ( MPADecodeHeader s,
uint32_t  header 
)

Definition at line 34 of file mpegaudiodecheader.c.

Referenced by avpriv_mpa_decode_header(), decode_frame(), and mp3_parse_vbr_tags().

static int ff_mpa_check_header ( uint32_t  header)
inlinestatic