[FFmpeg-cvslog] r14304 - trunk/libavcodec/ra288.c
vitor
subversion
Sat Jul 19 17:43:34 CEST 2008
Author: vitor
Date: Sat Jul 19 17:43:34 2008
New Revision: 14304
Log:
Cosmetics: alignement
Modified:
trunk/libavcodec/ra288.c
Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c (original)
+++ trunk/libavcodec/ra288.c Sat Jul 19 17:43:34 2008
@@ -155,12 +155,12 @@ static void co(int n, int i, int j, cons
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 */
}
More information about the ffmpeg-cvslog
mailing list