diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-19 15:43:34 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-19 15:43:34 +0000 |
commit | 9f59e608d2355f098f667bacba31424d80ba57a4 (patch) | |
tree | baef4a53b3b680a8821e7d201b208137bb967c72 | |
parent | 3c617380e763b6ee82b9d98196d589948770d00a (diff) | |
download | ffmpeg-9f59e608d2355f098f667bacba31424d80ba57a4.tar.gz |
Cosmetics: alignment
Originally committed as revision 14304 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra288.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 890fc8db1b..44a456836a 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -155,12 +155,12 @@ static void co(int n, int i, int j, const float *in, float *out, float *st1, work[x] = table[x] * st1[x]; } - prodsum(buffer1, work + n, i, n); + prodsum(buffer1, work + n , i, n); prodsum(buffer2, work + n + i, j, n); - for (x=0;x<=n;x++) { + for (x=0; x <= n; x++) { st2[x] = st2[x] * 0.5625 + buffer1[x]; - out[x] = st2[x] + buffer2[x]; + out[x] = st2[x] + buffer2[x]; } *out *= 1.00390625; /* to prevent clipping */ } |