# HG changeset patch # User alexc # Date 1275951358 0 # Node ID 6b52f0c3263d61b0fa8521c074b69f93bde0cdca # Parent 67206bbbab10648e6ca4bec5bbf05a0925fc903b 10l: Fix types and now unused variables after last commit. diff -r 67206bbbab10 -r 6b52f0c3263d aacsbr.c --- a/aacsbr.c Mon Jun 07 21:52:08 2010 +0000 +++ b/aacsbr.c Mon Jun 07 22:55:58 2010 +0000 @@ -84,7 +84,7 @@ av_cold void ff_aac_sbr_init(void) { - int n, k; + int n; static const struct { const void *sbr_codes, *sbr_bits; const unsigned int table_size, elem_size; @@ -1126,7 +1126,7 @@ * @param x pointer to the beginning of the first sample window * @param W array of complex-valued samples split into subbands */ -static void sbr_qmf_analysis(DSPContext *dsp, RDFTContext *mdct, const float *in, float *x, +static void sbr_qmf_analysis(DSPContext *dsp, FFTContext *mdct, const float *in, float *x, float z[320], float W[2][32][32][2], float scale) { @@ -1139,7 +1139,6 @@ memcpy(x+288, in, 1024*sizeof(*x)); for (i = 0; i < 32; i++) { // numTimeSlots*RATE = 16*2 as 960 sample frames // are not supported - float re, im; dsp->vector_fmul_reverse(z, sbr_qmf_window_ds, x, 320); for (k = 0; k < 64; k++) { float f = z[k] + z[k + 64] + z[k + 128] + z[k + 192] + z[k + 256];