Mercurial > libavcodec.hg
changeset 7322:6c8c561becce libavcodec
Cosmetics: alignment
author | vitor |
---|---|
date | Sat, 19 Jul 2008 15:43:34 +0000 |
parents | 2db97a3e51ed |
children | 5d6c51a125d0 |
files | ra288.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ra288.c Sat Jul 19 15:41:15 2008 +0000 +++ b/ra288.c Sat Jul 19 15:43:34 2008 +0000 @@ -155,12 +155,12 @@ 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 */ }