From db7f647e1082fa20c7094aeece0728e530e5f029 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 20 May 2007 01:41:36 +0000 Subject: [PATCH] use AV_LOG_ERROR instead of INFO for errors Originally committed as revision 9078 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 8f07b6196d..fb4c76a000 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1020,7 +1020,7 @@ int MPV_encode_init(AVCodecContext *avctx) } if(avctx->rc_min_rate && avctx->rc_min_rate > avctx->bit_rate){ - av_log(avctx, AV_LOG_INFO, "bitrate below min bitrate\n"); + av_log(avctx, AV_LOG_ERROR, "bitrate below min bitrate\n"); return -1; } @@ -1030,12 +1030,12 @@ int MPV_encode_init(AVCodecContext *avctx) } if(avctx->rc_buffer_size && avctx->bit_rate*av_q2d(avctx->time_base) > avctx->rc_buffer_size){ - av_log(avctx, AV_LOG_INFO, "VBV buffer too small for bitrate\n"); + av_log(avctx, AV_LOG_ERROR, "VBV buffer too small for bitrate\n"); return -1; } if(avctx->bit_rate*av_q2d(avctx->time_base) > avctx->bit_rate_tolerance){ - av_log(avctx, AV_LOG_INFO, "bitrate tolerance too small for bitrate\n"); + av_log(avctx, AV_LOG_ERROR, "bitrate tolerance too small for bitrate\n"); return -1; }