From d520055000b8cda49a1b9eb00f852ecbf3442aa9 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 18 Sep 2013 11:55:04 +0000 Subject: [PATCH] avfilter/vf_pullup: change log level to error Signed-off-by: Paul B Mahol --- libavfilter/vf_pullup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_pullup.c b/libavfilter/vf_pullup.c index a81bc56b57..16e7763e66 100644 --- a/libavfilter/vf_pullup.c +++ b/libavfilter/vf_pullup.c @@ -166,7 +166,7 @@ static int config_input(AVFilterLink *inlink) s->nb_planes = av_pix_fmt_count_planes(inlink->format); if (mp + 1 > s->nb_planes) { - av_log(ctx, AV_LOG_WARNING, "input format does not have such plane\n"); + av_log(ctx, AV_LOG_ERROR, "input format does not have such plane\n"); return AVERROR(EINVAL); }