Commit 46822800 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

xspf: fix content-type matching (fixes #14576)

parent 714b4749
...@@ -84,8 +84,15 @@ static int Demux(demux_t *); ...@@ -84,8 +84,15 @@ static int Demux(demux_t *);
*/ */
int Import_xspf(vlc_object_t *p_this) int Import_xspf(vlc_object_t *p_this)
{ {
DEMUX_BY_EXTENSION_OR_MIMETYPE(".xspf", "application/xspf+xml", demux_t *p_demux = (demux_t *)p_this;
"using XSPF playlist reader");
CHECK_FILE();
if( !demux_IsPathExtension( p_demux, ".xspf" )
&& !demux_IsContentType( p_demux, "application/xspf+xml" ) )
return VLC_EGENERIC;
STANDARD_DEMUX_INIT_MSG("using XSPF playlist reader");
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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