X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fplaylist%2Fengine.c;h=8a40f47a50023eb769d26dd0532d26977b0b2e2e;hb=6deae4bd4b3482b755e96a78a1e7b1690865bf9e;hp=26bc7ee4e36e0c81c829670af2c883297231c173;hpb=14ee5f1254c0aa7cb2e4c01a99fd4d61b009f7e9;p=vlc diff --git a/src/playlist/engine.c b/src/playlist/engine.c index 26bc7ee4e3..8a40f47a50 100644 --- a/src/playlist/engine.c +++ b/src/playlist/engine.c @@ -38,7 +38,6 @@ * Local prototypes *****************************************************************************/ static void VariablesInit( playlist_t *p_playlist ); -static void playlist_Destructor( vlc_object_t * p_this ); static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd, vlc_value_t oldval, vlc_value_t newval, void *a ) @@ -122,7 +121,7 @@ playlist_t * playlist_Create( vlc_object_t *p_parent ) /* Create the root node */ PL_LOCK; p_playlist->p_root = playlist_NodeCreate( p_playlist, NULL, NULL, - 0, NULL ); + PLAYLIST_END, 0, NULL ); PL_UNLOCK; if( !p_playlist->p_root ) return NULL; @@ -130,7 +129,7 @@ playlist_t * playlist_Create( vlc_object_t *p_parent ) PL_LOCK; p_playlist->p_playing = playlist_NodeCreate( p_playlist, _( "Playlist" ), p_playlist->p_root, - PLAYLIST_RO_FLAG, NULL ); + PLAYLIST_END, PLAYLIST_RO_FLAG, NULL ); PL_UNLOCK; @@ -143,7 +142,7 @@ playlist_t * playlist_Create( vlc_object_t *p_parent ) PL_LOCK; p_playlist->p_media_library = playlist_NodeCreate( p_playlist, _( "Media Library" ), p_playlist->p_root, - PLAYLIST_RO_FLAG, NULL ); + PLAYLIST_END, PLAYLIST_RO_FLAG, NULL ); PL_UNLOCK; if(!p_playlist->p_media_library ) return NULL; @@ -174,11 +173,16 @@ playlist_t * playlist_Create( vlc_object_t *p_parent ) pl_priv(p_playlist)->b_auto_preparse = b_auto_preparse; } - vlc_object_set_destructor( p_playlist, playlist_Destructor ); - return p_playlist; } +/** + * Destroy playlist. + * This is not thread-safe. Any reference to the playlist is assumed gone. + * (In particular, all interface and services threads must have been joined). + * + * \param p_playlist the playlist object + */ void playlist_Destroy( playlist_t *p_playlist ) { playlist_private_t *p_sys = pl_priv(p_playlist); @@ -188,22 +192,8 @@ void playlist_Destroy( playlist_t *p_playlist ) playlist_preparser_Delete( p_sys->p_preparser ); if( p_sys->p_fetcher ) playlist_fetcher_Delete( p_sys->p_fetcher ); - vlc_object_release( p_playlist ); -} - -/** - * Destroy playlist - * - * Destroy a playlist structure. - * \param p_playlist the playlist object - * \return nothing - */ - -static void playlist_Destructor( vlc_object_t * p_this ) -{ - playlist_t *p_playlist = (playlist_t *)p_this; - playlist_private_t *p_sys = pl_priv(p_playlist); + /* Already cleared when deactivating (if activated anyway) */ assert( !p_sys->p_input ); assert( !p_sys->p_input_resource ); @@ -227,7 +217,7 @@ static void playlist_Destructor( vlc_object_t * p_this ) ARRAY_RESET( p_playlist->items ); ARRAY_RESET( p_playlist->current ); - msg_Dbg( p_this, "Destroyed" ); + vlc_object_release( p_playlist ); } /** Get current playing input. @@ -292,6 +282,12 @@ void set_current_status_node( playlist_t * p_playlist, pl_priv(p_playlist)->status.p_node = p_node; } +static input_thread_t *playlist_FindInput( vlc_object_t *object ) +{ + assert( object == VLC_OBJECT(pl_Get(object)) ); + return playlist_CurrentInput( (playlist_t *)object ); +} + static void VariablesInit( playlist_t *p_playlist ) { /* These variables control updates */ @@ -323,6 +319,18 @@ static void VariablesInit( playlist_t *p_playlist ) /* */ var_Create( p_playlist, "album-art", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); + + /* Variables to preserve video output parameters */ + var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + var_Create( p_playlist, "video-on-top", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + + /* Audio output parameters */ + var_Create( p_playlist, "volume-muted", VLC_VAR_BOOL ); + var_Create( p_playlist, "saved-volume", VLC_VAR_INTEGER ); + var_Create( p_playlist, "volume-change", VLC_VAR_VOID ); + /* FIXME: horrible hack for audio output interface code */ + var_Create( p_playlist, "find-input-callback", VLC_VAR_ADDRESS ); + var_SetAddress( p_playlist, "find-input-callback", playlist_FindInput ); } playlist_item_t * playlist_CurrentPlayingItem( playlist_t * p_playlist )