Commit 3ceac114 authored by Vitor Sessak's avatar Vitor Sessak

Cosmetics: indentation

Originally committed as revision 13216 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c3298582
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment