Commit 23321469 authored by Laurent Aimar's avatar Laurent Aimar

* all: rework of the input.

parent 520a764b
...@@ -406,7 +406,7 @@ static char *TitleGet( vlc_object_t *p_this ) ...@@ -406,7 +406,7 @@ static char *TitleGet( vlc_object_t *p_this )
if( p_input ) if( p_input )
{ {
char *psz = strrchr( p_input->psz_source, '/' ); char *psz = strrchr( p_input->input.p_item->psz_uri, '/' );
if( psz ) if( psz )
{ {
...@@ -414,7 +414,7 @@ static char *TitleGet( vlc_object_t *p_this ) ...@@ -414,7 +414,7 @@ static char *TitleGet( vlc_object_t *p_this )
} }
else else
{ {
psz = p_input->psz_source; psz = p_input->input.p_item->psz_uri;
} }
if( psz && *psz ) if( psz && *psz )
{ {
......
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