Reindent after last commit

Originally committed as revision 17678 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2009-03-01 11:16:57 +00:00
parent 9e27e0d4f8
commit 8d2544bd1b
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}