]> git.sesse.net Git - vlc/commitdiff
playlist: Defines a small helper to directly access current input.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 13 Jul 2008 10:50:12 +0000 (12:50 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 13 Jul 2008 14:17:54 +0000 (16:17 +0200)
include/vlc_playlist.h

index 39e464c7b2bb836e92868b2fa738c95874037511..d8f1e8e955286059aa6fa95da60774b3a12d7e0f 100644 (file)
@@ -415,6 +415,16 @@ static inline int playlist_Import( playlist_t *p_playlist, const char *psz_file)
     return VLC_SUCCESS;
 }
 
+/** Small helper tp get current playing input or NULL. Release the input after use. */
+#define pl_CurrentInput(a) __pl_CurrentInput( VLC_OBJECT(a) )
+static  inline input_thread_t * __pl_CurrentInput( vlc_object_t * p_this )
+{
+    playlist_t * p_playlist = pl_Yield( p_this );
+    if( !p_playlist ) return NULL;
+    input_thread_t * p_input = playlist_CurrentInput( p_playlist );
+    pl_Release( p_this );
+    return p_input;
+}
 
 /** Tell if the playlist is currently running */
 #define playlist_IsPlaying( pl ) ( pl->status.i_status == PLAYLIST_RUNNING && \