1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

don't arbitrarily limit delta_qp

Originally committed as revision 5026 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Loren Merritt 2006-02-16 01:16:12 +00:00
parent b86e38a0c2
commit db8a64cba0

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;
}