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

Merge branch 'FIX_AE0159' into 'master'

Fix the problem with disabling AE0159 macro

See merge request !533
parents 525ca76d 5ad411ff
No related branches found
No related tags found
1 merge request!533Fix the problem with disabling AE0159 macro
Pipeline #11188 passed
...@@ -4276,13 +4276,13 @@ Distortion InterSearch::xPredIBCFracPelSearch(PredictionUnit& pu ...@@ -4276,13 +4276,13 @@ Distortion InterSearch::xPredIBCFracPelSearch(PredictionUnit& pu
#endif #endif
for (int i = 0; i < intBvList.cnt; ++i) for (int i = 0; i < intBvList.cnt; ++i)
{ {
pu.cu->imv = IMV_FPEL;
pu.bv = intBvList.mvList[i];
pu.mv[0] = intBvList.mvList[i];
pu.mv[0].changePrecision(MV_PRECISION_INT, MV_PRECISION_INTERNAL);
#if JVET_AE0159_FIBC #if JVET_AE0159_FIBC
if (m_pcEncCfg->getIntraPeriod() != 1) //non-AI if (m_pcEncCfg->getIntraPeriod() != 1) //non-AI
{ {
pu.cu->imv = IMV_FPEL;
pu.bv = intBvList.mvList[i];
pu.mv[0] = intBvList.mvList[i];
pu.mv[0].changePrecision(MV_PRECISION_INT, MV_PRECISION_INTERNAL);
#if JVET_AE0078_IBC_LIC_EXTENSION #if JVET_AE0078_IBC_LIC_EXTENSION
const int ibcLicLoopNum = pu.cu->ibcLicFlag && !pu.cu->ibcFilterFlag ? 4 : 1; const int ibcLicLoopNum = pu.cu->ibcLicFlag && !pu.cu->ibcFilterFlag ? 4 : 1;
int bestLicIdc = 0; int bestLicIdc = 0;
...@@ -4458,11 +4458,6 @@ Distortion InterSearch::xPredIBCFracPelSearch(PredictionUnit& pu ...@@ -4458,11 +4458,6 @@ Distortion InterSearch::xPredIBCFracPelSearch(PredictionUnit& pu
#endif #endif
#endif #endif
   
pu.cu->imv = IMV_FPEL;
pu.bv = intBvList.mvList[i];
pu.mv[0] = intBvList.mvList[i];
pu.mv[0].changePrecision(MV_PRECISION_INT, MV_PRECISION_INTERNAL);
#if JVET_AC0112_IBC_LIC #if JVET_AC0112_IBC_LIC
if (pu.cu->ibcLicFlag) if (pu.cu->ibcLicFlag)
{ {
......
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