Commit 4f23fe2e authored by Rafaël Carré's avatar Rafaël Carré

Gets title for goom visualization from meta information if available

parent 680bb209
...@@ -413,19 +413,25 @@ static char *TitleGet( vlc_object_t *p_this ) ...@@ -413,19 +413,25 @@ static char *TitleGet( vlc_object_t *p_this )
if( p_input ) if( p_input )
{ {
char *psz = strrchr( p_input->input.p_item->psz_uri, '/' ); vlc_object_yield( p_input );
psz_title = vlc_input_item_GetInfo( p_input->input.p_item,
if( psz ) _("Meta-information"), _(VLC_META_TITLE) );
{ if( !*psz_title )
psz++;
}
else
{
psz = p_input->input.p_item->psz_uri;
}
if( psz && *psz )
{ {
psz_title = strdup( psz ); char *psz = strrchr( p_input->input.p_item->psz_uri, '/' );
if( psz )
{
psz++;
}
else
{
psz = p_input->input.p_item->psz_uri;
}
if( psz && *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