Commit 5e66d8ac authored by Paul B Mahol's avatar Paul B Mahol

avcodec/xwdenc: use AV_LOG_ERROR in error message

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 9bc59c10
......@@ -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);
}
......
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