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
h264: fix variable overflow after a few years of video playback
Found-by: Joakim Plate <elupus@ecce.se> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer
13 years ago
parent
d0b68a9d57
commit
786f06e109
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
@@ -3868,7 +3868,7 @@ again:
break;
if (h->sei_recovery_frame_cnt >= 0 && (h->frame_num != h->sei_recovery_frame_cnt || hx->slice_type_nos != AV_PICTURE_TYPE_I))
h->valid_recovery_point
++
;
h->valid_recovery_point
= 1
;
if ( h->sei_recovery_frame_cnt >= 0
&& ( h->recovery_frame<0
Write
Preview
Loading…
Cancel
Save