aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-04 22:52:10 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-04 22:52:10 +0200
commit6bbcae2c16e74373bd396b9502ccbe362106346a (patch)
tree866c0bed86a3bfbd8abe0a56188030773f3c3ff7
parent62cf5c114a383b0516a91da3071539c2f6714b13 (diff)
downloadffmpeg-6bbcae2c16e74373bd396b9502ccbe362106346a.tar.gz
avcodec/fft: Fix "warning: unused variable"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/fft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c
index 5244dcaa8e..e0cf1f2982 100644
--- a/libavcodec/fft.c
+++ b/libavcodec/fft.c
@@ -189,7 +189,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
fft_perm_avx(s);
} else {
for(i=0; i<n; i++) {
- int j = i;
+ j = i;
if (s->fft_permutation == FF_FFT_PERM_SWAP_LSBS)
j = (j&~3) | ((j>>1)&1) | ((j<<1)&2);
s->revtab[-split_radix_permutation(i, n, s->inverse) & (n-1)] = j;