summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-21 16:53:20 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-21 16:53:20 +0000
commit3ceac114ee0df2832db78644781397aceda68d5e (patch)
tree80ab6b782a176d5d04bce4e1a7d2917ea743340e
parentc32985829a1978e5a7c298a43e55ad7afa341f67 (diff)
Cosmetics: indentation
Originally committed as revision 13216 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ra144.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c
index b3435bb2e1..e1ac53f4b0 100644
--- a/libavcodec/ra144.c
+++ b/libavcodec/ra144.c
@@ -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;
}