Commit 5b2069fd authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Use filenames as playlistnames for relative m3u playlistentries instead of the full paths.

parent e55fc1b4
......@@ -186,6 +186,10 @@ static int Demux( demux_t *p_demux )
}
else if( *psz_parse )
{
if( !psz_name || !*psz_name )
{
psz_name = strdup( psz_parse ); /* Use filename as name for relative entries */
}
char *psz_mrl =
ProcessMRL( psz_parse, p_demux->p_sys->psz_prefix );
......
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