Cosmetics: indentation
authorVitor Sessak <vitor1001@gmail.com>
Wed, 21 May 2008 16:53:20 +0000 (16:53 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Wed, 21 May 2008 16:53:20 +0000 (16:53 +0000)
Originally committed as revision 13216 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra144.c

index b3435bb..e1ac53f 100644 (file)
@@ -140,8 +140,8 @@ static void add_wav(int n, int f, int m1, int m2, int m3, const short *s1,
     b = (ptr[1] * m2) >> (ptr2[1] + 1);
     c = (ptr[2] * m3) >> (ptr2[2] + 1);
 
-        for (i=0; i < BLOCKSIZE; i++)
-            dest[i] = ((*(s1++)) * a + (*(s2++)) * b + (*(s3++)) * c) >> 12;
+    for (i=0; i < BLOCKSIZE; i++)
+        dest[i] = ((*(s1++)) * a + (*(s2++)) * b + (*(s3++)) * c) >> 12;
 }