comparison nellymoserdec.c @ 10199:38ab367d4231 libavcodec

Merge FFTContext and MDCTContext
author mru
date Sun, 20 Sep 2009 17:30:20 +0000
parents 67a20f0eb42c
children 5e566408864c
comparison
equal deleted inserted replaced
10198:78af613fc316 10199:38ab367d4231
48 AVLFG random_state; 48 AVLFG random_state;
49 GetBitContext gb; 49 GetBitContext gb;
50 int add_bias; 50 int add_bias;
51 float scale_bias; 51 float scale_bias;
52 DSPContext dsp; 52 DSPContext dsp;
53 MDCTContext imdct_ctx; 53 FFTContext imdct_ctx;
54 DECLARE_ALIGNED_16(float,imdct_out[NELLY_BUF_LEN * 2]); 54 DECLARE_ALIGNED_16(float,imdct_out[NELLY_BUF_LEN * 2]);
55 } NellyMoserDecodeContext; 55 } NellyMoserDecodeContext;
56 56
57 static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *audio, float *a_in) 57 static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *audio, float *a_in)
58 { 58 {