FFmpeg
|
MPEG Audio Layer 1/2 -like codec with frames of 1152 samples divided into 32 subbands. More...
#include "libavutil/channel_layout.h"
#include "libavutil/lfg.h"
#include "avcodec.h"
#include "get_bits.h"
#include "dsputil.h"
#include "internal.h"
#include "mpegaudiodsp.h"
#include "mpc.h"
#include "mpc8data.h"
#include "mpc8huff.h"
Go to the source code of this file.
Functions | |
static int | mpc8_dec_base (GetBitContext *gb, int k, int n) |
static int | mpc8_dec_enum (GetBitContext *gb, int k, int n) |
static int | mpc8_get_mod_golomb (GetBitContext *gb, int m) |
static int | mpc8_get_mask (GetBitContext *gb, int size, int t) |
static av_cold int | mpc8_decode_init (AVCodecContext *avctx) |
static int | mpc8_decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) |
static av_cold void | mpc8_decode_flush (AVCodecContext *avctx) |
Variables | |
static VLC | band_vlc |
static VLC | scfi_vlc [2] |
static VLC | dscf_vlc [2] |
static VLC | res_vlc [2] |
static VLC | q1_vlc |
static VLC | q2_vlc [2] |
static VLC | q3_vlc [2] |
static VLC | quant_vlc [4][2] |
static VLC | q9up_vlc |
static const int | q3_offsets [2] = { MPC8_Q3_OFFSET, MPC8_Q4_OFFSET } |
static const int | quant_offsets [6] = { MPC8_Q5_OFFSET, MPC8_Q6_OFFSET, MPC8_Q7_OFFSET, MPC8_Q8_OFFSET } |
static const uint16_t | vlc_offsets [13] |
AVCodec | ff_mpc8_decoder |
MPEG Audio Layer 1/2 -like codec with frames of 1152 samples divided into 32 subbands.
Definition in file mpc8.c.
|
inlinestatic |
Definition at line 46 of file mpc8.c.
Referenced by mpc8_dec_enum(), and mpc8_get_mod_golomb().
|
inlinestatic |
Definition at line 57 of file mpc8.c.
Referenced by mpc8_get_mask().
|
inlinestatic |
Definition at line 76 of file mpc8.c.
Referenced by mpc8_decode_frame().
|
static |
Definition at line 82 of file mpc8.c.
Referenced by mpc8_decode_frame().
|
static |
|
static |
|
static |
|
static |
Definition at line 43 of file mpc8.c.
Referenced by mpc8_decode_frame().
|
static |
Definition at line 44 of file mpc8.c.
Referenced by mpc8_decode_frame().
|
static |
Definition at line 93 of file mpc8.c.
Referenced by mpc8_decode_init().
AVCodec ff_mpc8_decoder |