[FFmpeg-devel] [PATCH] lavc/mpegvideo_enc: improve log message in case of too large GOP

Stefano Sabatini stefasab at gmail.com
Mon Jan 16 23:36:13 CET 2012


Change log level from ERROR to WARNING and provide more specific
information in the message itself.
---
 libavcodec/mpegvideo_enc.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index ab611ba..fd31edc 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -339,8 +339,9 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
     s->height   = avctx->height;
     if (avctx->gop_size > 600 &&
         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
-        av_log(avctx, AV_LOG_ERROR,
-               "Warning keyframe interval too large! reducing it ...\n");
+        av_log(avctx, AV_LOG_WARNING,
+               "keyframe interval too large!, reducing it from %d to %d\n",
+               avctx->gop_size, 600);
         avctx->gop_size = 600;
     }
     s->gop_size     = avctx->gop_size;
-- 
1.7.5.4



More information about the ffmpeg-devel mailing list