Commit 9f34f314 authored by vitor's avatar vitor

Reindent after last commit


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17678 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8b2304c5
......@@ -139,11 +139,11 @@ static void add_wav(int16_t *dest, int n, int skip_first, int *m,
v[i] = (gain_val_tab[n][i] * m[i]) >> gain_exp_tab[n];
if (v[0]) {
for (i=0; i < BLOCKSIZE; i++)
dest[i] = (s1[i]*v[0] + s2[i]*v[1] + s3[i]*v[2]) >> 12;
for (i=0; i < BLOCKSIZE; i++)
dest[i] = (s1[i]*v[0] + s2[i]*v[1] + s3[i]*v[2]) >> 12;
} else {
for (i=0; i < BLOCKSIZE; i++)
dest[i] = (s2[i]*v[1] + s3[i]*v[2]) >> 12;
dest[i] = ( s2[i]*v[1] + s3[i]*v[2]) >> 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