Browse Source

don't arbitrarily limit delta_qp

Originally committed as revision 5026 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Loren Merritt 20 years ago
parent
commit
db8a64cba0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.c

+ 1
- 1
libavcodec/h264.c View File

@@ -5484,7 +5484,7 @@ static int decode_cabac_mb_dqp( H264Context *h) {
else
ctx = 3;
val++;
if(val > 52) //prevent infinite loop
if(val > 102) //prevent infinite loop
return INT_MIN;
}



Loading…
Cancel
Save