[vlc-devel] commit: Qt: info_panel, remove FPS reference and close #2113. This is not the interface's role to deal with it. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Jan 21 23:06:51 CET 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Jan 21 23:05:54 2009 +0100| [f076b18aa7ee688f0ac61c2ef430a10081f5fe2a] | committer: Jean-Baptiste Kempf
Qt: info_panel, remove FPS reference and close #2113. This is not the interface's role to deal with it.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f076b18aa7ee688f0ac61c2ef430a10081f5fe2a
---
modules/gui/qt4/components/info_panels.cpp | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index 30a5170..73daea9 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -533,7 +533,6 @@ InputStatsPanel::InputStatsPanel( QWidget *parent,
"0", video, "" );
CREATE_AND_ADD_TO_CAT( vlost_frames_stat, qtr("Lost frames"),
"0", video, "" );
-// CREATE_AND_ADD_TO_CAT( vfps_stat, qtr("FPS"), "0", video, "" );
CREATE_AND_ADD_TO_CAT( send_stat, qtr("Sent packets"), "0", streaming, "" );
CREATE_AND_ADD_TO_CAT( send_bytes_stat, qtr("Sent bytes"),
@@ -582,8 +581,6 @@ void InputStatsPanel::update( input_item_t *p_item )
UPDATE( vdecoded_stat, "%5i", p_item->p_stats->i_decoded_video );
UPDATE( vdisplayed_stat, "%5i", p_item->p_stats->i_displayed_pictures );
UPDATE( vlost_frames_stat, "%5i", p_item->p_stats->i_lost_pictures );
-/* UPDATE( vfps_stat, "%5f", p_item->p_stats->i_lost_pictures );
-input_Control( p_input_thread, INPUT_GET_VIDEO_FPS, &f_fps */
/* Sout */
UPDATE( send_stat, "%5i", p_item->p_stats->i_sent_packets );
More information about the vlc-devel
mailing list