Commit 108850c2 authored by Rémi Duraffort's avatar Rémi Duraffort

xspf: both "xmlns" and "xmlns:vlc" are acceptable. (Fix #2260)

parent 1f7257eb
...@@ -206,7 +206,7 @@ static bool parse_playlist_node COMPLEX_INTERFACE ...@@ -206,7 +206,7 @@ static bool parse_playlist_node COMPLEX_INTERFACE
msg_Warn( p_demux, "unsupported XSPF version" ); msg_Warn( p_demux, "unsupported XSPF version" );
} }
/* attribute: xmlns */ /* attribute: xmlns */
else if( !strcmp( psz_name, "xmlns" ) ) else if( !strcmp( psz_name, "xmlns" ) || !strcmp( psz_name, "xmlns:vlc" ) )
; ;
else if( !strcmp( psz_name, "xml:base" ) ) else if( !strcmp( psz_name, "xml:base" ) )
{ {
......
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