comparison ra288.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 5f51b1e0bed6
children bfabfdf9ce55
comparison
equal deleted inserted replaced
2966:564788471dd4 2967:ef2149182f1c
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */ 18 */
19 19
20 #include "avcodec.h" 20 #include "avcodec.h"
21 #include "ra288.h" 21 #include "ra288.h"
22 22
23 typedef struct { 23 typedef struct {
24 float history[8]; 24 float history[8];
25 float output[40]; 25 float output[40];
26 float pr1[36]; 26 float pr1[36];
27 float pr2[10]; 27 float pr2[10];
178 fp=st1+i; 178 fp=st1+i;
179 for (x=0;x<b;x++) { 179 for (x=0;x<b;x++) {
180 if (x==c) fp=in; 180 if (x==c) fp=in;
181 work[x]=*(table++)*(*(st1++)=*(fp++)); 181 work[x]=*(table++)*(*(st1++)=*(fp++));
182 } 182 }
183 183
184 prodsum(buffer1,work+n,i,n); 184 prodsum(buffer1,work+n,i,n);
185 prodsum(buffer2,work+a,j,n); 185 prodsum(buffer2,work+a,j,n);
186 186
187 for (x=0;x<=n;x++) { 187 for (x=0;x<=n;x++) {
188 *st2=*st2*(0.5625)+buffer1[x]; 188 *st2=*st2*(0.5625)+buffer1[x];