This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
b86e38a0c2
commit
db8a64cba0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 >
5
2) //prevent infinite loop
if(val >
10
2) //prevent infinite loop
return INT_MIN;
}
Write
Preview
Loading…
Cancel
Save