Skip to content
Snippets Groups Projects
Commit b3366ce0 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

demux:mkv: log the tag target type even if we don't use it

parent 2717d570
No related branches found
No related tags found
No related merge requests found
......@@ -414,6 +414,10 @@ void matroska_segment_c::LoadTags( KaxTags *tags )
vars.tag.i_uid = static_cast<uint64>( entry );
msg_Dbg( &vars.sys.demuxer, "| | + AttachmentUID: %" PRIu64, vars.tag.i_uid);
}
E_CASE( KaxTagTargetType, entry )
{
msg_Dbg( &vars.sys.demuxer, "| | + TargetType: %s", entry.GetValue().c_str());
}
E_CASE_DEFAULT( el )
{
msg_Dbg( &vars.sys.demuxer, "| | + Unknown (%s)", typeid(el).name() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment