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

avfilter/vf_pullup: change log level to error

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent fe5b7612
...@@ -166,7 +166,7 @@ static int config_input(AVFilterLink *inlink) ...@@ -166,7 +166,7 @@ static int config_input(AVFilterLink *inlink)
s->nb_planes = av_pix_fmt_count_planes(inlink->format); s->nb_planes = av_pix_fmt_count_planes(inlink->format);
if (mp + 1 > s->nb_planes) { 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); return AVERROR(EINVAL);
} }
......
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