Commit da55304c authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_mix: initialize last to silence possible warning

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c0aa89ee
......@@ -74,7 +74,7 @@ static av_cold int init(AVFilterContext *ctx)
{
MixContext *s = ctx->priv;
char *p, *arg, *saveptr = NULL;
int i, ret, last;
int i, ret, last = 0;
s->tmix = !strcmp(ctx->filter->name, "tmix");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment