Commit 48a98edc authored by Mal Graty's avatar Mal Graty Committed by Jean-Baptiste Kempf

Playlist status not being updated on play/pause

Fix issue #4899

The problem was that the playing/paused state was being misreported
to the luahttp interface, turns out this was due to the way the playing
state was being updated in the Qt and hotkey logic.

The p_input state was being updated, but the playlist wasn't being
informed, this patch switches out the p_state calls to use the
equivalent playlist aware functions.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 71360d0a
......@@ -301,17 +301,8 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
ClearChannels( p_intf, p_vout );
int state = var_GetInteger( p_input, "state" );
if( state != PAUSE_S )
{
DisplayIcon( p_vout, OSD_PAUSE_ICON );
state = PAUSE_S;
}
else
{
DisplayIcon( p_vout, OSD_PLAY_ICON );
state = PLAYING_S;
}
var_SetInteger( p_input, "state", state );
DisplayIcon( p_vout, state != PAUSE_S ? OSD_PAUSE_ICON : OSD_PLAY_ICON );
playlist_Pause( p_playlist );
}
else
playlist_Play( p_playlist );
......
......@@ -734,17 +734,6 @@ void InputManager::sliderUpdate( float new_pos )
emit seekRequested( new_pos );
}
/* User togglePlayPause */
void InputManager::togglePlayPause()
{
if( hasInput() )
{
int state = var_GetInteger( p_input, "state" );
state = ( state != PLAYING_S ) ? PLAYING_S : PAUSE_S;
var_SetInteger( p_input, "state", state );
}
}
void InputManager::sectionPrev()
{
if( hasInput() )
......@@ -1117,7 +1106,7 @@ void MainInputManager::togglePlayPause()
if( !p_input )
playlist_Play( THEPL );
else
getIM()->togglePlayPause();
playlist_Pause( THEPL );
}
void MainInputManager::play()
......@@ -1129,7 +1118,7 @@ void MainInputManager::play()
{
if( PLAYING_S != var_GetInteger( p_input, "state" ) )
{
getIM()->togglePlayPause();
playlist_Pause( THEPL );
}
}
}
......@@ -1138,7 +1127,7 @@ void MainInputManager::pause()
{
if(p_input && PLAYING_S == var_GetInteger( p_input, "state" ) )
{
getIM()->togglePlayPause();
playlist_Pause( THEPL );
}
}
......
......@@ -206,7 +206,6 @@ public slots:
void setAtoB();
private slots:
void togglePlayPause();
void AtoBLoop( float, int64_t, int );
signals:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment