00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00029 #ifndef AVCODEC_MPC_H
00030 #define AVCODEC_MPC_H
00031
00032 #include "libavutil/lfg.h"
00033 #include "avcodec.h"
00034 #include "get_bits.h"
00035 #include "dsputil.h"
00036 #include "mpegaudio.h"
00037
00038 #include "mpcdata.h"
00039
00040 #define BANDS 32
00041 #define SAMPLES_PER_BAND 36
00042 #define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
00043
00045 typedef struct {
00046 int msf;
00047 int res[2];
00048 int scfi[2];
00049 int scf_idx[2][3];
00050 int Q[2];
00051 }Band;
00052
00053 typedef struct {
00054 DSPContext dsp;
00055 GetBitContext gb;
00056 int IS, MSS, gapless;
00057 int lastframelen;
00058 int maxbands, last_max_band;
00059 int last_bits_used;
00060 int oldDSCF[2][BANDS];
00061 Band bands[BANDS];
00062 int Q[2][MPC_FRAME_SIZE];
00063 int cur_frame, frames;
00064 uint8_t *bits;
00065 int buf_size;
00066 AVLFG rnd;
00067 int frames_to_skip;
00068
00069 DECLARE_ALIGNED(16, MPA_INT, synth_buf)[MPA_MAX_CHANNELS][512*2];
00070 int synth_buf_offset[MPA_MAX_CHANNELS];
00071 DECLARE_ALIGNED(16, int32_t, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
00072 } MPCContext;
00073
00074 void ff_mpc_init(void);
00075 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
00076
00077 #endif