Commit a1fa3487 authored by Laurent Aimar's avatar Laurent Aimar

Do not skip non finite size element in matroska.

It seems to create an infinite loop.
parent 6c5bf42f
......@@ -160,7 +160,9 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlS
p_l0 = p_estream->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFL);
}
else
p_l0 = p_l0->SkipData(*p_estream, KaxSegment_Context);
{
p_l0 = NULL;
}
}
if ( !b_keep_stream )
......
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