diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-02-16 01:16:12 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-02-16 01:16:12 +0000 |
commit | db8a64cba0ae8ae9d0d7c0b8a7801996ed2c958e (patch) | |
tree | cf8af9b8daadc68da4ab5e4d51eccf98bde69983 /libavcodec/h264.c | |
parent | b86e38a0c29741d88c5572eef7392369b519673f (diff) | |
download | ffmpeg-db8a64cba0ae8ae9d0d7c0b8a7801996ed2c958e.tar.gz |
don't arbitrarily limit delta_qp
Originally committed as revision 5026 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index a90f9facd5..962d0b6325 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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; } |