[vlc-commits] control: rc: display the number of late frames in the media stats

Steve Lhomme git at videolan.org
Thu Aug 13 14:07:53 CEST 2020


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Aug 10 07:41:58 2020 +0200| [2101e03e19d5b6b25238b6c5ea7e47378e6e9015] | committer: Steve Lhomme

control: rc: display the number of late frames in the media stats

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2101e03e19d5b6b25238b6c5ea7e47378e6e9015
---

 modules/control/rc.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/control/rc.c b/modules/control/rc.c
index c992d00066..a67390e1db 100644
--- a/modules/control/rc.c
+++ b/modules/control/rc.c
@@ -1215,6 +1215,8 @@ static void Statistics(intf_thread_t *intf)
                   item->p_stats->i_decoded_video);
         msg_print(intf, _("| frames displayed :    %5"PRIi64),
                   item->p_stats->i_displayed_pictures);
+        msg_print(intf, _("| frames late      :    %5"PRIi64),
+                  item->p_stats->i_late_pictures);
         msg_print(intf, _("| frames lost      :    %5"PRIi64),
                   item->p_stats->i_lost_pictures);
         msg_print(intf, "|");



More information about the vlc-commits mailing list