diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-23 21:04:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-03 01:53:36 +0200 |
commit | d0f34c96b13e6ccbb359e23565ef0e8c944b7c0e (patch) | |
tree | 83bdbbcfe1f77c51e2fcf8ad040a828144738da9 /libavcodec/aacsbr.c | |
parent | 0e3cec9f7d9353b01ef7af0d67a39a66c4ec899c (diff) | |
download | ffmpeg-d0f34c96b13e6ccbb359e23565ef0e8c944b7c0e.tar.gz |
aacsbr: remove unused variables
Diffstat (limited to 'libavcodec/aacsbr.c')
-rw-r--r-- | libavcodec/aacsbr.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/aacsbr.c b/libavcodec/aacsbr.c index 9ba3754bef..b4fc761fa1 100644 --- a/libavcodec/aacsbr.c +++ b/libavcodec/aacsbr.c @@ -1578,10 +1578,6 @@ static void sbr_hf_assemble(float Y1[38][64][2], 0.11516383427084, 0.03183050093751, }; - static const int8_t phi[2][4] = { - { 1, 0, -1, 0}, // real - { 0, 1, 0, -1}, // imaginary - }; float (*g_temp)[48] = ch_data->g_temp, (*q_temp)[48] = ch_data->q_temp; int indexnoise = ch_data->f_indexnoise; int indexsine = ch_data->f_indexsine; @@ -1605,7 +1601,6 @@ static void sbr_hf_assemble(float Y1[38][64][2], for (e = 0; e < ch_data->bs_num_env; e++) { for (i = 2 * ch_data->t_env[e]; i < 2 * ch_data->t_env[e + 1]; i++) { - int phi_sign = (1 - 2*(kx & 1)); LOCAL_ALIGNED_16(float, g_filt_tab, [48]); LOCAL_ALIGNED_16(float, q_filt_tab, [48]); float *g_filt, *q_filt; |