Skip to content
Snippets Groups Projects
Commit 51c51542 authored by Hongtao Wang's avatar Hongtao Wang
Browse files

Fixed crash when --EnableTMTools=0

parent cef5a8da
No related branches found
No related tags found
1 merge request!440Fixed crash when --EnableTMTools=0
......@@ -17028,6 +17028,10 @@ void PU::getRMVFAffineCand(const PredictionUnit &pu, AffineMergeCtx& affineMerge
for (int i = 0; i < numAffNeighExtend2; i++)
{
getRMVFAffineGuideCand(pu, *npu[i], affMrgCtxTemp, mvpInfoVec, -1);
if (affMrgCtxTemp.numValidMergeCand == affMrgCtxTemp.maxNumMergeCand)
{
break;
}
}
#if JVET_W0090_ARMC_TM
}
......
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