Mercurial > libavcodec.hg
comparison dsputil.c @ 882:34943cb0c2fb libavcodec
* remaining part of John Ryland's patch
author | kabi |
---|---|
date | Fri, 22 Nov 2002 07:24:28 +0000 |
parents | 725ef4ea3ecc |
children | 2cef5c4c0ca6 |
comparison
equal
deleted
inserted
replaced
881:d326091dae9f | 882:34943cb0c2fb |
---|---|
1320 { | 1320 { |
1321 int i; | 1321 int i; |
1322 INT16 temp[64]; | 1322 INT16 temp[64]; |
1323 | 1323 |
1324 if(last<=0) return; | 1324 if(last<=0) return; |
1325 if(permutation[1]==1) return; //FIXME its ok but not clean and might fail for some perms | 1325 //if(permutation[1]==1) return; //FIXME its ok but not clean and might fail for some perms |
1326 | 1326 |
1327 for(i=0; i<=last; i++){ | 1327 for(i=0; i<=last; i++){ |
1328 const int j= scantable[i]; | 1328 const int j= scantable[i]; |
1329 temp[j]= block[j]; | 1329 temp[j]= block[j]; |
1330 block[j]=0; | 1330 block[j]=0; |