mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_zoompan: Initialize ret
Silences: CID1351394 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
03b26a2514
commit
f9f684c0fb
|
@ -266,7 +266,7 @@ static int request_frame(AVFilterLink *outlink)
|
|||
ZPContext *s = ctx->priv;
|
||||
AVFrame *in = s->in;
|
||||
double zoom=1, dx=0, dy=0;
|
||||
int ret;
|
||||
int ret = -1;
|
||||
|
||||
if (in) {
|
||||
ret = output_single_frame(ctx, in, s->var_values, s->current_frame,
|
||||
|
|
Loading…
Reference in New Issue