00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef LIBAVCODEC_AACPSDSP_H
00022 #define LIBAVCODEC_AACPSDSP_H
00023
00024 #define PS_QMF_TIME_SLOTS 32
00025 #define PS_AP_LINKS 3
00026 #define PS_MAX_AP_DELAY 5
00027
00028 typedef struct PSDSPContext {
00029 void (*add_squares)(float *dst, const float (*src)[2], int n);
00030 void (*mul_pair_single)(float (*dst)[2], float (*src0)[2], float *src1,
00031 int n);
00032 void (*hybrid_analysis)(float (*out)[2], float (*in)[2],
00033 const float (*filter)[8][2],
00034 int stride, int n);
00035 void (*hybrid_analysis_ileave)(float (*out)[32][2], float L[2][38][64],
00036 int i, int len);
00037 void (*hybrid_synthesis_deint)(float out[2][38][64], float (*in)[32][2],
00038 int i, int len);
00039 void (*decorrelate)(float (*out)[2], float (*delay)[2],
00040 float (*ap_delay)[PS_QMF_TIME_SLOTS+PS_MAX_AP_DELAY][2],
00041 const float phi_fract[2], float (*Q_fract)[2],
00042 const float *transient_gain,
00043 float g_decay_slope,
00044 int len);
00045 void (*stereo_interpolate[2])(float (*l)[2], float (*r)[2],
00046 float h[2][4], float h_step[2][4],
00047 int len);
00048 } PSDSPContext;
00049
00050 void ff_psdsp_init(PSDSPContext *s);
00051 void ff_psdsp_init_arm(PSDSPContext *s);
00052
00053 #endif