Skip to content
Snippets Groups Projects
Commit 309ce035 authored by Jizheng Xu's avatar Jizheng Xu
Browse files

Fix a typo

parent f749e8bb
No related branches found
No related tags found
1 merge request!1041JVET-P1018: Disable IBC reference wrapping around.
...@@ -130,7 +130,7 @@ void DecCu::decompressCtu( CodingStructure& cs, const UnitArea& ctuArea ) ...@@ -130,7 +130,7 @@ void DecCu::decompressCtu( CodingStructure& cs, const UnitArea& ctuArea )
if((currCU.Y().x % vSize) == 0 && (currCU.Y().y % vSize) == 0) if((currCU.Y().x % vSize) == 0 && (currCU.Y().y % vSize) == 0)
{ {
#if JVET_P1018_IBC_NO_WRAPAROUND #if JVET_P1018_IBC_NO_WRAPAROUND
m_pcInterPred->resetVPDUforIBC(cs.pcv->chrFormat, cs.slice->getSPS()->getMaxCUHeight(), vSize, currCU.Y().x + g_IBCBufferrSize / cs.slice->getSPS()->getMaxCUHeight() / 2, currCU.Y().y); m_pcInterPred->resetVPDUforIBC(cs.pcv->chrFormat, cs.slice->getSPS()->getMaxCUHeight(), vSize, currCU.Y().x + g_IBCBufferSize / cs.slice->getSPS()->getMaxCUHeight() / 2, currCU.Y().y);
#else #else
m_pcInterPred->resetVPDUforIBC(cs.pcv->chrFormat, cs.slice->getSPS()->getMaxCUHeight(), vSize, currCU.Y().x, currCU.Y().y); m_pcInterPred->resetVPDUforIBC(cs.pcv->chrFormat, cs.slice->getSPS()->getMaxCUHeight(), vSize, currCU.Y().x, currCU.Y().y);
#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