Skip to content
Snippets Groups Projects
Commit 80e3d385 authored by Vadim Seregin's avatar Vadim Seregin
Browse files

Merge branch 'Fix-Compilation-AF0190-with-AF0163' into 'master'

Fix: compilation of JVET-AF0190 together with JVET-AF0163

See merge request !549
parents a87ede0a 4f0e49d3
No related branches found
No related tags found
1 merge request!549Fix: compilation of JVET-AF0190 together with JVET-AF0163
Pipeline #11328 passed
...@@ -13098,7 +13098,11 @@ void InterPrediction::xGetSublkAMLTemplate(const CodingUnit& cu, ...@@ -13098,7 +13098,11 @@ void InterPrediction::xGetSublkAMLTemplate(const CodingUnit& cu,
if (scalingRatio != NULL) if (scalingRatio != NULL)
{ {
#if JVET_Y0067_ENHANCED_MMVD_MVD_SIGN_PRED #if JVET_Y0067_ENHANCED_MMVD_MVD_SIGN_PRED
#if JVET_AF0163_TM_SUBBLOCK_REFINEMENT
xGetPredBlkTpl<true>(cu, compID, refBuf, mvAbove, posW, posH, sublkWidth, refAboveTemplate, afMMVD, &refPic, scalingRatio);
#else
xGetPredBlkTpl<true>(cu, compID, refBuf, mv, posW, posH, sublkWidth, refAboveTemplate, afMMVD, &refPic, scalingRatio); xGetPredBlkTpl<true>(cu, compID, refBuf, mv, posW, posH, sublkWidth, refAboveTemplate, afMMVD, &refPic, scalingRatio);
#endif
#else #else
xGetPredBlkTpl<true>(cu, compID, refBuf, mv, posW, posH, sublkWidth, refAboveTemplate, &refPic, scalingRatio); xGetPredBlkTpl<true>(cu, compID, refBuf, mv, posW, posH, sublkWidth, refAboveTemplate, &refPic, scalingRatio);
#endif #endif
...@@ -13138,7 +13142,11 @@ void InterPrediction::xGetSublkAMLTemplate(const CodingUnit& cu, ...@@ -13138,7 +13142,11 @@ void InterPrediction::xGetSublkAMLTemplate(const CodingUnit& cu,
if (scalingRatio != NULL) if (scalingRatio != NULL)
{ {
#if JVET_Y0067_ENHANCED_MMVD_MVD_SIGN_PRED #if JVET_Y0067_ENHANCED_MMVD_MVD_SIGN_PRED
#if JVET_AF0163_TM_SUBBLOCK_REFINEMENT
xGetPredBlkTpl<false>(cu, compID, refBuf, mvLeft, posW, posH, sublkHeight, refLeftTemplate, afMMVD, &refPic, scalingRatio);
#else
xGetPredBlkTpl<false>(cu, compID, refBuf, mv, posW, posH, sublkHeight, refLeftTemplate, afMMVD, &refPic, scalingRatio); xGetPredBlkTpl<false>(cu, compID, refBuf, mv, posW, posH, sublkHeight, refLeftTemplate, afMMVD, &refPic, scalingRatio);
#endif
#else #else
xGetPredBlkTpl<false>(cu, compID, refBuf, mv, posW, posH, sublkHeight, refLeftTemplate, &refPic, scalingRatio); xGetPredBlkTpl<false>(cu, compID, refBuf, mv, posW, posH, sublkHeight, refLeftTemplate, &refPic, scalingRatio);
#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