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

DVB: force m3u8 demux in scan mode

parent 826660d4
......@@ -421,11 +421,8 @@ static int Open( vlc_object_t *p_this )
else
p_sys->i_read_once = DVB_READ_ONCE_START;
if( !p_sys->b_scan_mode )
{
free( p_access->psz_demux );
p_access->psz_demux = strdup( "ts" );
}
free( p_access->psz_demux );
p_access->psz_demux = strdup( p_sys->b_scan_mode ? "m3u8" : "ts" );
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