avfilter/vf_dedot: initizalize ret variable

This commit is contained in:
Paul B Mahol 2018-11-16 21:39:37 +01:00
parent 4902780d2b
commit 395508d9b6

View File

@ -265,7 +265,7 @@ static int activate(AVFilterContext *ctx)
AVFrame *frame = NULL;
int64_t pts;
int status;
int ret;
int ret = 0;
FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);