From 74561680cd01f36a2b225efb529bcd5729b65d32 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 20 Jul 2013 00:44:09 +0200 Subject: [PATCH] avfilter/vf_separatefields: fix ;; Found-by: llogan Signed-off-by: Michael Niedermayer --- libavfilter/vf_separatefields.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_separatefields.c b/libavfilter/vf_separatefields.c index c91c0c10e6..d9c4839630 100644 --- a/libavfilter/vf_separatefields.c +++ b/libavfilter/vf_separatefields.c @@ -33,7 +33,7 @@ static int config_props_output(AVFilterLink *outlink) SeparateFieldsContext *sf = ctx->priv; AVFilterLink *inlink = ctx->inputs[0]; - sf->nb_planes = av_pix_fmt_count_planes(inlink->format);; + sf->nb_planes = av_pix_fmt_count_planes(inlink->format); if (inlink->h & 1) { av_log(ctx, AV_LOG_ERROR, "height must be even\n");