Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-09-18 15:55:04 +0400
committerPaul B Mahol <onemda@gmail.com>2013-09-18 15:56:36 +0400
commitd520055000b8cda49a1b9eb00f852ecbf3442aa9 (patch)
tree84a9740badd1b06b23f94f5e733f28fa601810ff /libavfilter/vf_pullup.c
parentfe5b7612c0c9d1cf32c52a1edea993d6c40bdc25 (diff)
avfilter/vf_pullup: change log level to error
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_pullup.c')
-rw-r--r--libavfilter/vf_pullup.c2
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);
}