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
sbgdec: dont set slide to a uninitialized value
Fixed CID703833 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Nicolas George
Michael Niedermayer
12 years ago
parent
44e9d7f182
commit
e9b8523d52
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/sbgdec.c
+ 1
- 1
libavformat/sbgdec.c
View File
@@ -488,7 +488,7 @@ static int parse_timestamp(struct sbg_parser *p,
static int parse_fade(struct sbg_parser *p, struct sbg_fade *fr)
{
struct sbg_fade f;
struct sbg_fade f
= {0}
;
if (lex_char(p, '<'))
f.in = SBG_FADE_SILENCE;
Write
Preview
Loading…
Cancel
Save