[FFmpeg-cvslog] avcodec/xwdenc: use AV_LOG_ERROR in error message

Paul B Mahol git at videolan.org
Mon Sep 9 13:58:40 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Mon Sep  9 09:51:38 2013 +0000| [5e66d8ac63f9bca8b410706c0597ab94631cc770] | committer: Paul B Mahol

avcodec/xwdenc: use AV_LOG_ERROR in error message

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5e66d8ac63f9bca8b410706c0597ab94631cc770
---

 libavcodec/xwdenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/xwdenc.c b/libavcodec/xwdenc.c
index e98de5e..4b4f368 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);
     }
 



More information about the ffmpeg-cvslog mailing list