diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 5b633e942d91826ad2351b871bda7c2891775e1a..d08a8d5d470ca6459fa9d5b7e7ccd3ef962d2b26 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -389,10 +389,10 @@ OBJS += i386/fdct_mmx.o \
         i386/idct_mmx_xvid.o \
         i386/idct_sse2_xvid.o \
 
-OBJS-$(HAVE_YASM) += i386/fft_mmx.o \
-        i386/fft_sse.o \
-        i386/fft_3dn.o \
-        i386/fft_3dn2.o \
+OBJS-$(HAVE_YASM)                      += i386/fft_mmx.o \
+                                          i386/fft_sse.o \
+                                          i386/fft_3dn.o \
+                                          i386/fft_3dn2.o \
 
 OBJS-$(CONFIG_GPL)                     += i386/idct_mmx.o
 
diff --git a/libavcodec/fft.c b/libavcodec/fft.c
index 7b0d3b3b61310b554f2ca85a1adf7a2b73c4d938..c8acfc6017271c3d825319e4f941ea7ff400b2e0 100644
--- a/libavcodec/fft.c
+++ b/libavcodec/fft.c
@@ -164,15 +164,14 @@ int ff_fft_init(FFTContext *s, int nbits, int inverse)
         } while (nblocks != 0);
         av_freep(&s->exptab);
 
-    /* compute bit reverse table */
-
-    for(i=0;i<n;i++) {
-        m=0;
-        for(j=0;j<nbits;j++) {
-            m |= ((i >> j) & 1) << (nbits-j-1);
+        /* compute bit reverse table */
+        for(i=0;i<n;i++) {
+            m=0;
+            for(j=0;j<nbits;j++) {
+                m |= ((i >> j) & 1) << (nbits-j-1);
+            }
+            s->revtab[i]=m;
         }
-        s->revtab[i]=m;
-    }
     }
 
     return 0;