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

Merge branch 'Fix_ciip_affine' into 'master'

Fix mismatch caused by the interaction between AG0142 and AG0067

See merge request ecm/ECM!604
parents 287f236a a94f3b42
No related branches found
No related tags found
No related merge requests found
...@@ -13409,7 +13409,11 @@ bool PU::checkBDMVRConditionCIIPAffine(const PredictionUnit& pu) ...@@ -13409,7 +13409,11 @@ bool PU::checkBDMVRConditionCIIPAffine(const PredictionUnit& pu)
return pu.mergeFlag && pu.mergeType == MRG_TYPE_DEFAULT_N && !pu.cu->affine && !pu.mmvdMergeFlag return pu.mergeFlag && pu.mergeType == MRG_TYPE_DEFAULT_N && !pu.cu->affine && !pu.mmvdMergeFlag
#endif #endif
&& !pu.cu->mmvdSkip && !pu.cu->mmvdSkip
#if JVET_AG0067_DMVR_EXTENSIONS
&& (PU::isBiPredFromDifferentDirEqDistPoc(pu) || (PU::isBiPredFromDifferentDirGenDistPoc(pu) && !pu.cu->geoFlag))
#else
&& PU::isBiPredFromDifferentDirEqDistPoc(pu) && PU::isBiPredFromDifferentDirEqDistPoc(pu)
#endif
#if JVET_AD0213_LIC_IMP #if JVET_AD0213_LIC_IMP
&& !pu.cu->licFlag && !pu.cu->licFlag
#endif #endif
......
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