]> git.sesse.net Git - vlc/commitdiff
Qt4: don't reset rate when input changes
authorIlkka Ollakka <ileoo@videolan.org>
Sun, 12 Sep 2010 20:05:56 +0000 (23:05 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Sun, 12 Sep 2010 20:07:33 +0000 (23:07 +0300)
Maybe littlebit hackis implementation and core could be better place to
implement this.

modules/gui/qt4/input_manager.cpp

index ebcc032612391b0ac1282d2e62601586af2f0221..516105ca7f0306225a60b501776cc5899ea382f2 100644 (file)
@@ -81,7 +81,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
     artUrl       = "";
     p_input      = NULL;
     p_input_vbi  = NULL;
-    f_rate       = 0.;
+    f_rate       = 1.;
     p_item       = NULL;
     b_video      = false;
     timeA        = 0;
@@ -114,7 +114,9 @@ void InputManager::setInput( input_thread_t *_p_input )
         UpdateVout();
 
         p_item = input_GetItem( p_input );
-        emit rateChanged( var_GetFloat( p_input, "rate" ) );
+
+        var_SetFloat( p_input, "rate", f_rate );
+        emit rateChanged( f_rate );
     }
     else
     {
@@ -141,7 +143,6 @@ void InputManager::delInput()
     b_video              = false;
     timeA                = 0;
     timeB                = 0;
-    f_rate               = 0. ;
 
     if( p_input_vbi )
     {