[vlc-commits] Old RC: do not show nonexistent sout stats

Rémi Denis-Courmont git at videolan.org
Tue Dec 12 19:36:50 CET 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Dec 12 20:20:07 2017 +0200| [3fccdd190b3dd5a1b8f6fc1295ce51d4c80584c8] | committer: Rémi Denis-Courmont

Old RC: do not show nonexistent sout stats

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

 modules/control/oldrc.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/modules/control/oldrc.c b/modules/control/oldrc.c
index acb3a70ffa..497ec1d2f5 100644
--- a/modules/control/oldrc.c
+++ b/modules/control/oldrc.c
@@ -1750,15 +1750,6 @@ static int updateStatistics( intf_thread_t *p_intf, input_item_t *p_item )
     msg_rc(_("| buffers lost     :    %5"PRIi64),
             p_item->p_stats->i_lost_abuffers );
     msg_rc("|");
-    /* Sout */
-    msg_rc("%s", _("+-[Streaming]"));
-    msg_rc(_("| packets sent     :    %5"PRIi64),
-           p_item->p_stats->i_sent_packets );
-    msg_rc(_("| bytes sent       : %8.0f KiB"),
-            (float)(p_item->p_stats->i_sent_bytes)/1024 );
-    msg_rc(_("| sending bitrate  :   %6.0f kb/s"),
-            (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
-    msg_rc("|");
     msg_rc( "+----[ end of statistical info ]" );
     vlc_mutex_unlock( &p_item->lock );
 



More information about the vlc-commits mailing list