From: RĂ©mi Duraffort Date: Sat, 21 Feb 2009 21:30:03 +0000 (+0100) Subject: rc: remove one vlc_object_find. X-Git-Tag: 1.0.0-pre1~502 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=57cd88227f6aeb11e7c0f21406d3bfbdd5461fde;p=vlc rc: remove one vlc_object_find. --- diff --git a/modules/control/rc.c b/modules/control/rc.c index 91462589c4..119ba0bfcf 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -984,36 +984,32 @@ static int StateChanged( vlc_object_t *p_this, char const *psz_cmd, VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); intf_thread_t *p_intf = (intf_thread_t*)p_data; playlist_t *p_playlist = NULL; - input_thread_t *p_input = NULL; + char cmd[6]; vlc_mutex_lock( &p_intf->p_sys->status_lock ); - p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); - if( p_input ) - { - char cmd[6]; - p_playlist = pl_Hold( p_input ); - playlist_Lock( p_playlist ); - switch( playlist_Status( p_playlist ) ) - { - case PLAYLIST_STOPPED: - strcpy( cmd, "stop" ); - break; - case PLAYLIST_RUNNING: - strcpy( cmd, "play" ); - break; - case PLAYLIST_PAUSED: - strcpy( cmd, "pause" ); - break; - default: - cmd[0] = '\0'; - } /* var_GetInteger( p_input, "state" ) */ - playlist_Unlock( p_playlist ); - msg_rc( STATUS_CHANGE "( %s state: %d ): %s", - cmd, newval.i_int, - ppsz_input_state[ newval.i_int ] ); - vlc_object_release( p_playlist ); - vlc_object_release( p_input ); - } + p_playlist = pl_Hold( p_intf ); + PL_LOCK; + int i_status = playlist_Status( p_playlist ); + PL_UNLOCK; + pl_Release( p_intf ); + + switch( i_status ) + { + case PLAYLIST_STOPPED: + strcpy( cmd, "stop" ); + break; + case PLAYLIST_RUNNING: + strcpy( cmd, "play" ); + break; + case PLAYLIST_PAUSED: + strcpy( cmd, "pause" ); + break; + default: + cmd[0] = '\0'; + } /* var_GetInteger( p_input, "state" ) */ + msg_rc( STATUS_CHANGE "( %s state: %d ): %s", cmd, newval.i_int, + ppsz_input_state[ newval.i_int ] ); + vlc_mutex_unlock( &p_intf->p_sys->status_lock ); return VLC_SUCCESS; }