Commit a4cc7556 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MKV: parse segment cleanup

Notably: do the difference between Unknown and Unsupported Elements so the bug reports are cleaner
do comment deprecated stuff
parent 6fac9321
...@@ -478,6 +478,8 @@ bool matroska_segment_c::Preload( ) ...@@ -478,6 +478,8 @@ bool matroska_segment_c::Preload( )
;//LoadTags( static_cast<KaxTags*>( el ) ); ;//LoadTags( static_cast<KaxTags*>( el ) );
i_tags_position = (int64_t) es.I_O().getFilePointer(); i_tags_position = (int64_t) es.I_O().getFilePointer();
} }
else if( MKV_IS_ID( el, EbmlVoid ) )
msg_Dbg( &sys.demuxer, "| + Void" );
else else
msg_Dbg( &sys.demuxer, "| + Preload Unknown (%s)", typeid(*el).name() ); msg_Dbg( &sys.demuxer, "| + Preload Unknown (%s)", typeid(*el).name() );
} }
......
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