[vlc-devel] commit: Goom: use playlist_CurrentInput instead of vlc_object_find ( Rémi Denis-Courmont )
git version control
git at videolan.org
Mon Jan 18 18:40:26 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Jan 18 19:38:24 2010 +0200| [4572062f504c2aab3079a4dde5bfe3aebb2154b3] | committer: Rémi Denis-Courmont
Goom: use playlist_CurrentInput instead of vlc_object_find
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4572062f504c2aab3079a4dde5bfe3aebb2154b3
---
modules/visualization/goom.c | 45 ++++++++++++++++++-----------------------
1 files changed, 20 insertions(+), 25 deletions(-)
diff --git a/modules/visualization/goom.c b/modules/visualization/goom.c
index 6d93663..d7c6d03 100644
--- a/modules/visualization/goom.c
+++ b/modules/visualization/goom.c
@@ -408,35 +408,30 @@ static void Close( vlc_object_t *p_this )
static char *TitleGet( vlc_object_t *p_this )
{
- char *psz_title = NULL;
- input_thread_t *p_input =
- vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
+ playlist_t *pl = pl_Hold( p_this );
+ if( !pl )
+ return NULL;
- if( p_input )
+ input_thread_t *p_input = playlist_CurrentInput( pl );
+ pl_Release( p_this );
+ if( !p_input )
+ return NULL;
+
+ char *psz_title = input_item_GetTitle( input_GetItem( p_input ) );
+ if( EMPTY_STR( psz_title ) )
{
- psz_title = input_item_GetTitle( input_GetItem( p_input ) );
- if( EMPTY_STR( psz_title ) )
+ free( psz_title );
+
+ char *psz_uri = input_item_GetURI( input_GetItem( p_input ) );
+ const char *psz = strrchr( psz_orig, '/' );
+ if( psz )
{
- free( psz_title );
- char *psz_orig = input_item_GetURI( input_GetItem( p_input ) );
- char *psz = strrchr( psz_orig, '/' );
-
- if( psz )
- {
- psz++;
- }
- else
- {
- psz = psz_orig;
- }
- if( psz && *psz )
- {
- psz_title = strdup( psz );
- }
- free( psz_orig );
+ psz_title = strdup( psz + 1 );
+ free( psz_uri );
}
- vlc_object_release( p_input );
+ else
+ psz_title = psz_uri;
}
-
+ vlc_object_release( p_input );
return psz_title;
}
More information about the vlc-devel
mailing list