diff --git a/source/Lib/DecoderLib/CABACReader.cpp b/source/Lib/DecoderLib/CABACReader.cpp index a0774699fba9ce8365f4bf45ab990532365f87cd..46ebca863b39bf51099825376e495650cfc9203b 100644 --- a/source/Lib/DecoderLib/CABACReader.cpp +++ b/source/Lib/DecoderLib/CABACReader.cpp @@ -951,6 +951,7 @@ void CABACReader::cu_skip_flag( CodingUnit& cu ) cu.mmvdSkip = false; unsigned ctxId = DeriveCtx::CtxSkipFlag(cu); 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) { cu.skip = true;