Skip to content
Snippets Groups Projects
Commit 3631196b authored by Brian Heng's avatar Brian Heng
Browse files

Fix for Ticket #237 - RDPCM reference sample filtering

  - Fix to use unfiltered reference samples for RDPCM mode.
parent 942a475a
No related branches found
No related tags found
No related merge requests found
......@@ -588,6 +588,12 @@ void IntraPrediction::initPredIntraParams(const PredictionUnit & pu, const CompA
m_ipaParam.interpolationFlag = (m_ipaParam.isModeVer ? puSize.width : puSize.height) > 8 ? true : false ;
}
}
#if JVET_N0413_RDPCM
else if (isLuma( chType ) && pu.cu->bdpcmMode) // BDPCM
{
m_ipaParam.refFilterFlag = false;
}
#endif
else if (dirMode == PLANAR_IDX) // Planar intra prediction
{
m_ipaParam.refFilterFlag = puSize.width * puSize.height > 32 ? true : false;
......
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