From 5e66d8ac63f9bca8b410706c0597ab94631cc770 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 9 Sep 2013 09:51:38 +0000 Subject: [PATCH] avcodec/xwdenc: use AV_LOG_ERROR in error message Signed-off-by: Paul B Mahol --- libavcodec/xwdenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/xwdenc.c b/libavcodec/xwdenc.c index e98de5e829..4b4f368216 100644 --- a/libavcodec/xwdenc.c +++ b/libavcodec/xwdenc.c @@ -138,7 +138,7 @@ static int xwd_encode_frame(AVCodecContext *avctx, AVPacket *pkt, vclass = XWD_STATIC_GRAY; break; default: - av_log(avctx, AV_LOG_INFO, "unsupported pixel format\n"); + av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n"); return AVERROR(EINVAL); }