mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
vf_framestep: fix uninitilaized variable bug
Found-by: gcc Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
afe6f337ad
commit
19dceef905
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user