Fix gcc 4.6 set but unused warnings in AEC.

Review URL: http://webrtc-codereview.appspot.com/134003

git-svn-id: http://webrtc.googlecode.com/svn/trunk@465 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org
2011-08-26 17:20:54 +00:00
parent b62c776eca
commit e46d69f762

View File

@@ -77,9 +77,8 @@ static void cft1st_128_SSE2(float *a) {
static void cftmdl_128_SSE2(float *a) { static void cftmdl_128_SSE2(float *a) {
const int l = 8; const int l = 8;
const int m = 32;
const __m128 mm_swap_sign = _mm_load_ps(k_swap_sign); const __m128 mm_swap_sign = _mm_load_ps(k_swap_sign);
int j0, k, k1, k2, m2; int j0, k, k1, k2;
__m128 wk1rv = _mm_load_ps(cftmdl_wk1r); __m128 wk1rv = _mm_load_ps(cftmdl_wk1r);
for (j0 = 0; j0 < l; j0 += 2) { for (j0 = 0; j0 < l; j0 += 2) {
@@ -136,7 +135,6 @@ static void cftmdl_128_SSE2(float *a) {
} }
k1 = 0; k1 = 0;
m2 = 2 * m;
k = 64; k = 64;
k1 += 2; k1 += 2;
k2 = 2 * k1; k2 = 2 * k1;