comparison ra144.c @ 6839:d17cae06e958 libavcodec

Cosmetics: indentation
author vitor
date Wed, 21 May 2008 16:53:20 +0000
parents 7d4031cba765
children 10975a82f615
comparison
equal deleted inserted replaced
6838:7d4031cba765 6839:d17cae06e958
138 a = (ptr[0] * m1) >> (ptr2[0] + 1); 138 a = (ptr[0] * m1) >> (ptr2[0] + 1);
139 139
140 b = (ptr[1] * m2) >> (ptr2[1] + 1); 140 b = (ptr[1] * m2) >> (ptr2[1] + 1);
141 c = (ptr[2] * m3) >> (ptr2[2] + 1); 141 c = (ptr[2] * m3) >> (ptr2[2] + 1);
142 142
143 for (i=0; i < BLOCKSIZE; i++) 143 for (i=0; i < BLOCKSIZE; i++)
144 dest[i] = ((*(s1++)) * a + (*(s2++)) * b + (*(s3++)) * c) >> 12; 144 dest[i] = ((*(s1++)) * a + (*(s2++)) * b + (*(s3++)) * c) >> 12;
145 } 145 }
146 146
147 147
148 static void final(const short *i1, const short *i2, 148 static void final(const short *i1, const short *i2,
149 void *out, int *statbuf, int len) 149 void *out, int *statbuf, int len)