[FFmpeg-cvslog] lavc/h264: Show "Increasing reorder buffer" message with loglevel info.

Carl Eugen Hoyos git at videolan.org
Wed Jan 27 10:13:13 CET 2016


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Jan 27 10:11:46 2016 +0100| [69dbecf920f6fe7e5a7fc0b38ecaeeb444bc1d7a] | committer: Carl Eugen Hoyos

lavc/h264: Show "Increasing reorder buffer" message with loglevel info.

See ticket #5138 for a sample.

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

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

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 545ac14..2361660 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -933,7 +933,7 @@ static void decode_postinit(H264Context *h, int setup_finished)
         h->last_pocs[0] = cur->poc;
         cur->mmco_reset = 1;
     } else if(h->avctx->has_b_frames < out_of_order && !h->sps.bitstream_restriction_flag){
-        av_log(h->avctx, AV_LOG_VERBOSE, "Increasing reorder buffer to %d\n", out_of_order);
+        av_log(h->avctx, AV_LOG_INFO, "Increasing reorder buffer to %d\n", out_of_order);
         h->avctx->has_b_frames = out_of_order;
         h->low_delay = 0;
     }



More information about the ffmpeg-cvslog mailing list