Commit 93d45466 authored by Michael Niedermayer's avatar Michael Niedermayer

typo in a comment ...

Originally committed as revision 1821 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e21206a8
......@@ -3859,8 +3859,8 @@ static int dct_quantize_c(MpegEncContext *s,
level = block[j];
level = level * qmat[j];
// if( bias+level >= (1<<(QMAT_SHIFT - 3))
// || bias-level >= (1<<(QMAT_SHIFT - 3))){
// if( bias+level >= (1<<QMAT_SHIFT)
// || bias-level >= (1<<QMAT_SHIFT)){
if(((unsigned)(level+threshold1))>threshold2){
if(level>0){
level= (bias + level)>>QMAT_SHIFT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment