Commit 6bf8fffe authored by Thomas Guillem's avatar Thomas Guillem Committed by Rémi Denis-Courmont

playlist: return true for DEMUX_IS_PLAYLIST

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 292239ec
......@@ -154,7 +154,16 @@ vlc_module_end ()
int Control(demux_t *demux, int query, va_list args)
{
(void) demux; (void) query; (void) args;
(void) demux;
switch( query )
{
case DEMUX_IS_PLAYLIST:
{
bool *pb_bool = (bool*)va_arg( args, bool * );
*pb_bool = true;
return VLC_SUCCESS;
}
}
return VLC_EGENERIC;
}
......
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