comparison ra288.c @ 7322:6c8c561becce libavcodec

Cosmetics: alignment
author vitor
date Sat, 19 Jul 2008 15:43:34 +0000
parents 2db97a3e51ed
children d346c4da00bd
comparison
equal deleted inserted replaced
7321:2db97a3e51ed 7322:6c8c561becce
153 fp=in; 153 fp=in;
154 st1[x] = *(fp++); 154 st1[x] = *(fp++);
155 work[x] = table[x] * st1[x]; 155 work[x] = table[x] * st1[x];
156 } 156 }
157 157
158 prodsum(buffer1, work + n, i, n); 158 prodsum(buffer1, work + n , i, n);
159 prodsum(buffer2, work + n + i, j, n); 159 prodsum(buffer2, work + n + i, j, n);
160 160
161 for (x=0;x<=n;x++) { 161 for (x=0; x <= n; x++) {
162 st2[x] = st2[x] * 0.5625 + buffer1[x]; 162 st2[x] = st2[x] * 0.5625 + buffer1[x];
163 out[x] = st2[x] + buffer2[x]; 163 out[x] = st2[x] + buffer2[x];
164 } 164 }
165 *out *= 1.00390625; /* to prevent clipping */ 165 *out *= 1.00390625; /* to prevent clipping */
166 } 166 }
167 167
168 static void update(Real288_internal *glob) 168 static void update(Real288_internal *glob)