comparison mpegvideo_enc.c @ 6497:e44443c512b1 libavcodec

typo fixes
author diego
date Sat, 15 Mar 2008 16:15:47 +0000
parents 3f96dc62c4b9
children 48759bfbd073
comparison
equal deleted inserted replaced
6496:8fbbe12e0c39 6497:e44443c512b1
1373 skip_dc=0; 1373 skip_dc=0;
1374 threshold= -threshold; 1374 threshold= -threshold;
1375 }else 1375 }else
1376 skip_dc=1; 1376 skip_dc=1;
1377 1377
1378 /* are all which we could set to zero are allready zero? */ 1378 /* Are all we could set to zero already zero? */
1379 if(last_index<=skip_dc - 1) return; 1379 if(last_index<=skip_dc - 1) return;
1380 1380
1381 for(i=0; i<=last_index; i++){ 1381 for(i=0; i<=last_index; i++){
1382 const int j = s->intra_scantable.permutated[i]; 1382 const int j = s->intra_scantable.permutated[i];
1383 const int level = FFABS(block[j]); 1383 const int level = FFABS(block[j]);