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
vf_framestep: fix uninitilaized variable bug
Found-by: gcc Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer
12 years ago
parent
afe6f337ad
commit
19dceef905
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
libavfilter/vf_framestep.c
+ 1
- 3
libavfilter/vf_framestep.c
View File
@@ -35,9 +35,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
{
FrameStepContext *framestep = ctx->priv;
char *tailptr;
long int n;
framestep->frame_step = 1;
long int n = 1;
if (args) {
n = strtol(args, &tailptr, 10);
Write
Preview
Loading…
Cancel
Save