summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-01-27 10:11:46 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-01-27 10:11:46 +0100
commit69dbecf920f6fe7e5a7fc0b38ecaeeb444bc1d7a (patch)
tree4c04b9e624889da02939cc0348020f0a88f411b4 /libavcodec/h264.c
parentb66ac803fac2394309797193cc3fdd265a285b03 (diff)
lavc/h264: Show "Increasing reorder buffer" message with loglevel info.
See ticket #5138 for a sample.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 545ac14a58..2361660327 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;
}