diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-18 11:55:04 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-18 11:56:36 +0000 |
commit | d520055000b8cda49a1b9eb00f852ecbf3442aa9 (patch) | |
tree | 84a9740badd1b06b23f94f5e733f28fa601810ff | |
parent | fe5b7612c0c9d1cf32c52a1edea993d6c40bdc25 (diff) | |
download | ffmpeg-d520055000b8cda49a1b9eb00f852ecbf3442aa9.tar.gz |
avfilter/vf_pullup: change log level to error
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_pullup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |