Commit e3b2ec7e authored by Denis Charmet's avatar Denis Charmet

Reduce trace verbosity for well known "unknown" components

parent bbbc5b52
......@@ -189,6 +189,16 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
cbnum.ReadData( es.I_O() );
idx.i_block_number = uint32( cbnum );
}
#if LIBMATROSKA_VERSION >= 0x010401
else if( MKV_IS_ID( el, KaxCueRelativePosition ) )
{
/* For future use */
}
else if( MKV_IS_ID( el, KaxCueDuration ) )
{
/* For future use */
}
#endif
else
{
msg_Dbg( &sys.demuxer, " * 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