From 3ceac114ee0df2832db78644781397aceda68d5e Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Wed, 21 May 2008 16:53:20 +0000 Subject: [PATCH] Cosmetics: indentation Originally committed as revision 13216 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index b3435bb..e1ac53f 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; } -- 2.7.4