diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-03-01 11:16:57 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-03-01 11:16:57 +0000 |
commit | 8d2544bd1bc41ba27c1cece8e24c7f497c4d2cf0 (patch) | |
tree | 0dec393429ef13fb0c86bcf9259113caf45841ca /libavcodec/ra144.c | |
parent | 9e27e0d4f825e97104333e3006f450f566935af0 (diff) | |
download | ffmpeg-8d2544bd1bc41ba27c1cece8e24c7f497c4d2cf0.tar.gz |
Reindent after last commit
Originally committed as revision 17678 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 5661bdc6f6..1f3c614702 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -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; } } |