diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-30 14:20:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-30 14:20:59 +0200 |
commit | 4f5454d20130160b18ac28b7fd9214a2dabe860b (patch) | |
tree | 36c34f84c678b0176105d6e273d9618b3aa1b26d | |
parent | b05cd1ea7e45a836f7f6071a716c38bb30326e0f (diff) | |
download | ffmpeg-4f5454d20130160b18ac28b7fd9214a2dabe860b.tar.gz |
avcodec/mpegvideo: reduce log level for messages about allocating frames.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 6ace50143f..dca99863e4 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1594,13 +1594,13 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) av_pix_fmt_get_chroma_sub_sample(s->avctx->pix_fmt, &h_chroma_shift, &v_chroma_shift); if (s->pict_type == AV_PICTURE_TYPE_B && s->next_picture_ptr && s->next_picture_ptr->f.data[0]) - av_log(avctx, AV_LOG_INFO, + av_log(avctx, AV_LOG_DEBUG, "allocating dummy last picture for B frame\n"); else if (s->pict_type != AV_PICTURE_TYPE_I) av_log(avctx, AV_LOG_ERROR, "warning: first frame is no keyframe\n"); else if (s->picture_structure != PICT_FRAME) - av_log(avctx, AV_LOG_INFO, + av_log(avctx, AV_LOG_DEBUG, "allocate dummy last picture for field based first keyframe\n"); /* Allocate a dummy frame */ |