[vlc-devel] commit: playlist does not need a destructor ( Rémi Denis-Courmont )
git version control
git at videolan.org
Tue Feb 9 20:22:30 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 9 19:15:29 2010 +0200| [94b463ab9b9bb23517edbdb908548245f3f30eef] | committer: Rémi Denis-Courmont
playlist does not need a destructor
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=94b463ab9b9bb23517edbdb908548245f3f30eef
---
src/playlist/engine.c | 28 +++++++++-------------------
1 files changed, 9 insertions(+), 19 deletions(-)
diff --git a/src/playlist/engine.c b/src/playlist/engine.c
index 26bc7ee..0b9bd73 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 )
@@ -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.
More information about the vlc-devel
mailing list