Commit 42fe4773 authored by vitor's avatar vitor

Cosmetics: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13216 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fb3f17e3
...@@ -140,8 +140,8 @@ static void add_wav(int n, int f, int m1, int m2, int m3, const short *s1, ...@@ -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); b = (ptr[1] * m2) >> (ptr2[1] + 1);
c = (ptr[2] * m3) >> (ptr2[2] + 1); c = (ptr[2] * m3) >> (ptr2[2] + 1);
for (i=0; i < BLOCKSIZE; i++) for (i=0; i < BLOCKSIZE; i++)
dest[i] = ((*(s1++)) * a + (*(s2++)) * b + (*(s3++)) * c) >> 12; 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