comparison dsputil.c @ 5129:0244bba24b43 libavcodec

misc typo fixes
author diego
date Tue, 12 Jun 2007 18:50:50 +0000
parents d0f834073f6b
children 9d4ca30481e0
comparison
equal deleted inserted replaced
5128:d98460d07146 5129:0244bba24b43
3137 { 3137 {
3138 int i; 3138 int i;
3139 DCTELEM temp[64]; 3139 DCTELEM temp[64];
3140 3140
3141 if(last<=0) return; 3141 if(last<=0) return;
3142 //if(permutation[1]==1) return; //FIXME its ok but not clean and might fail for some perms 3142 //if(permutation[1]==1) return; //FIXME it is ok but not clean and might fail for some permutations
3143 3143
3144 for(i=0; i<=last; i++){ 3144 for(i=0; i<=last; i++){
3145 const int j= scantable[i]; 3145 const int j= scantable[i];
3146 temp[j]= block[j]; 3146 temp[j]= block[j];
3147 block[j]=0; 3147 block[j]=0;