Commit 5e67eccf authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Mkv: use MKV_IS_ID and avoid EbmlId() operator use

parent dcf4d5b4
...@@ -93,7 +93,7 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlS ...@@ -93,7 +93,7 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlS
while (p_l0 != 0) while (p_l0 != 0)
{ {
if (EbmlId(*p_l0) == KaxSegment::ClassInfos.GlobalId) if ( MKV_IS_ID( p_l0, KaxSegment) )
{ {
EbmlParser *ep; EbmlParser *ep;
matroska_segment_c *p_segment1 = new matroska_segment_c( *this, *p_estream ); matroska_segment_c *p_segment1 = new matroska_segment_c( *this, *p_estream );
......
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