Skip to content
Snippets Groups Projects
Commit 35cbc42f authored by Fabrice Le Léannec's avatar Fabrice Le Léannec
Browse files

Merge branch 'FIX_DTRACE_BLOCK_GEO' into 'master'

Fix a bug of tracing blocks stats on decoder

See merge request !740
parents 313552ee a5afbd22
No related branches found
No related tags found
No related merge requests found
......@@ -816,9 +816,12 @@ void writeAllData(const CodingStructure& cs, const UnitArea& ctuArea)
MergeCtx geoMrgCtx = geoMergeCtxtsOfCurrentCtu.front();
geoMergeCtxtsOfCurrentCtu.pop();
PredictionUnit tmpPu = *cu.firstPU;
CodingUnit tmpCu = cu;
tmpPu.cu = &tmpCu;
// first partition
{
PredictionUnit tmpPu = *cu.firstPU;
#if JVET_Y0065_GPM_INTRA
if (candIdx0 >= GEO_MAX_NUM_UNI_CANDS)
{
......@@ -854,7 +857,6 @@ void writeAllData(const CodingStructure& cs, const UnitArea& ctuArea)
// second partition
{
PredictionUnit tmpPu = *cu.firstPU;
#if JVET_Y0065_GPM_INTRA
if (candIdx1 >= GEO_MAX_NUM_UNI_CANDS)
{
......
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