[vlc-commits] videotoolbox: change DPB log message to debug
Marvin Scholz
git at videolan.org
Wed Sep 23 20:10:20 CEST 2020
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | 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;
}
}
More information about the vlc-commits
mailing list