Commit 9c67b637 authored by michaelni's avatar michaelni

typo in a comment ...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1821 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 00ce9059
......@@ -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