Skip to content
Snippets Groups Projects
Commit 804eb9a8 authored by Frank Bossen's avatar Frank Bossen
Browse files

Merge branch 'traces' into 'master'

Add missing trace

See merge request jvet/VVCSoftware_VTM!328
parents c90f0c82 f18d02f6
No related branches found
No related tags found
No related merge requests found
...@@ -951,6 +951,7 @@ void CABACReader::cu_skip_flag( CodingUnit& cu ) ...@@ -951,6 +951,7 @@ void CABACReader::cu_skip_flag( CodingUnit& cu )
cu.mmvdSkip = false; cu.mmvdSkip = false;
unsigned ctxId = DeriveCtx::CtxSkipFlag(cu); unsigned ctxId = DeriveCtx::CtxSkipFlag(cu);
unsigned skip = m_BinDecoder.decodeBin(Ctx::SkipFlag(ctxId)); unsigned skip = m_BinDecoder.decodeBin(Ctx::SkipFlag(ctxId));
DTRACE( g_trace_ctx, D_SYNTAX, "cu_skip_flag() ctx=%d skip=%d\n", ctxId, skip ? 1 : 0 );
if (skip) if (skip)
{ {
cu.skip = true; cu.skip = true;
......
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