1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

typo in a comment ...

Originally committed as revision 1821 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-04-25 16:18:35 +00:00
parent e21206a820
commit 93d4546633

View File

@ -3859,8 +3859,8 @@ static int dct_quantize_c(MpegEncContext *s,
level = block[j]; level = block[j];
level = level * qmat[j]; level = level * qmat[j];
// if( bias+level >= (1<<(QMAT_SHIFT - 3)) // if( bias+level >= (1<<QMAT_SHIFT)
// || bias-level >= (1<<(QMAT_SHIFT - 3))){ // || bias-level >= (1<<QMAT_SHIFT)){
if(((unsigned)(level+threshold1))>threshold2){ if(((unsigned)(level+threshold1))>threshold2){
if(level>0){ if(level>0){
level= (bias + level)>>QMAT_SHIFT; level= (bias + level)>>QMAT_SHIFT;