Commit cde22b4f authored by Rafaël Carré's avatar Rafaël Carré

Gets title for goom visualization from meta information if available

parent 5f95753f
...@@ -412,6 +412,13 @@ static char *TitleGet( vlc_object_t *p_this ) ...@@ -412,6 +412,13 @@ static char *TitleGet( vlc_object_t *p_this )
vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE ); vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
if( p_input ) if( p_input )
{
if( p_input->input.p_item->p_meta->psz_title &&
*p_input->input.p_item->p_meta->psz_title )
{
psz_title = strdup( p_input->input.p_item->p_meta->psz_title );
}
else
{ {
char *psz = strrchr( p_input->input.p_item->psz_uri, '/' ); char *psz = strrchr( p_input->input.p_item->psz_uri, '/' );
...@@ -427,6 +434,7 @@ static char *TitleGet( vlc_object_t *p_this ) ...@@ -427,6 +434,7 @@ static char *TitleGet( vlc_object_t *p_this )
{ {
psz_title = strdup( psz ); psz_title = strdup( psz );
} }
}
vlc_object_release( p_input ); vlc_object_release( p_input );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment