Commit d84e3ad0 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: add sequence id in moof seek

parent b0ff2d9f
......@@ -5045,7 +5045,8 @@ static int DemuxAsLeaf( demux_t *p_demux )
if( p_mfhd && p_prevmfhd &&
BOXDATA(p_mfhd)->i_sequence_number != p_prevmfhd->data.p_mfhd->i_sequence_number + 1 )
{
msg_Info( p_demux, "Passive DASH Seek detected" );
msg_Info( p_demux, "Passive DASH Seek detected %"PRIu32" %"PRIu32,
BOXDATA(p_mfhd)->i_sequence_number, p_prevmfhd->data.p_mfhd->i_sequence_number + 1 );
MP4_Box_t *p_sidx = MP4_BoxGet( p_vroot, "sidx" );
if( p_sidx && BOXDATA(p_sidx) && BOXDATA(p_sidx)->i_timescale )
{
......
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