comparison fdctref.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 1e39f273ecd6
children bfabfdf9ce55
comparison
equal deleted inserted replaced
2966:564788471dd4 2967:ef2149182f1c
139 partial_product+= c[k][j]*block[8*i+k]; 139 partial_product+= c[k][j]*block[8*i+k];
140 140
141 tmp[8*i+j] = partial_product; 141 tmp[8*i+j] = partial_product;
142 } 142 }
143 143
144 /* Transpose operation is integrated into address mapping by switching 144 /* Transpose operation is integrated into address mapping by switching
145 loop order of i and j */ 145 loop order of i and j */
146 146
147 for (j=0; j<8; j++) 147 for (j=0; j<8; j++)
148 for (i=0; i<8; i++) 148 for (i=0; i<8; i++)
149 { 149 {