Commit 8c387fdd authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: fix regression on smooth streaming

DemuxFrg was no longer selected
parent ebae1fe6
......@@ -680,20 +680,16 @@ static int Open( vlc_object_t * p_this )
if ( !p_sys->moovfragment.p_moox && !p_sys->b_smooth )
goto error;
MP4_BoxDumpStructure( p_demux->s, p_sys->p_root );
if( p_sys->b_smooth )
{
if( InitTracks( p_demux ) != VLC_SUCCESS )
goto error;
CreateTracksFromSmooBox( p_demux );
return VLC_SUCCESS;
}
MP4_BoxDumpStructure( p_demux->s, p_sys->p_root );
if ( p_sys->b_smooth )
{
p_demux->pf_demux = DemuxFrg;
msg_Dbg( p_demux, "Set DemuxFrg mode" );
return VLC_SUCCESS;
}
else if( p_sys->b_fragmented )
{
......
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