Commit 0c1ad44f authored by lorenm's avatar lorenm

don't arbitrarily limit delta_qp


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5026 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c3c8d706
...@@ -5484,7 +5484,7 @@ static int decode_cabac_mb_dqp( H264Context *h) { ...@@ -5484,7 +5484,7 @@ static int decode_cabac_mb_dqp( H264Context *h) {
else else
ctx = 3; ctx = 3;
val++; val++;
if(val > 52) //prevent infinite loop if(val > 102) //prevent infinite loop
return INT_MIN; return INT_MIN;
} }
......
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