vlc | branch: master | Marvin Scholz <[email protected]> | Mon Sep 21 12:54:08 2020 +0200| [fd9e863c2689adac96c535fd87f86c09bccff873] | committer: Marvin Scholz
videotoolbox: change DPB log message to debug This message is not helpful for the average user. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fd9e863c2689adac96c535fd87f86c09bccff873 --- modules/codec/videotoolbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/videotoolbox.c b/modules/codec/videotoolbox.c index 13689d3e70..02e009a42d 100644 --- a/modules/codec/videotoolbox.c +++ b/modules/codec/videotoolbox.c @@ -916,7 +916,7 @@ static void OnDecodedFrame(decoder_t *p_dec, frame_info_t *p_info) p_sys->i_pic_reorder_max++; pic_pacer_UpdateReorderMax(p_sys->pic_pacer, p_sys->i_pic_reorder_max, p_info->i_num_ts); - msg_Info(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max); + msg_Dbg(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max); break; } else if (!p_sys->b_poc_based_reorder && @@ -927,7 +927,7 @@ static void OnDecodedFrame(decoder_t *p_dec, frame_info_t *p_info) p_sys->i_pic_reorder_max++; pic_pacer_UpdateReorderMax(p_sys->pic_pacer, p_sys->i_pic_reorder_max, p_info->i_num_ts); - msg_Info(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max); + msg_Dbg(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max); break; } } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
