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:
parent
e21206a820
commit
93d4546633
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user