From 500fa2f3640ac39d23f45705f7af364c04f5d331 Mon Sep 17 00:00:00 2001 From: JangwonChoi <jangwon84.choi@lge.com> Date: Wed, 31 Oct 2018 14:49:28 +0900 Subject: [PATCH] JVET-L0136/JVET-L0085: line buffer restriction in LM prediction (macro : JVET_L0136_L0085_LM_RESTRICTED_LINEBUFFER) change variable name bIsFirstRowOfCtu to IsFirstRowOfCtu --- source/Lib/CommonLib/IntraPrediction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Lib/CommonLib/IntraPrediction.cpp b/source/Lib/CommonLib/IntraPrediction.cpp index 0db9b836da..a9adee85ef 100644 --- a/source/Lib/CommonLib/IntraPrediction.cpp +++ b/source/Lib/CommonLib/IntraPrediction.cpp @@ -1389,7 +1389,7 @@ void IntraPrediction::xGetLumaRecPixels(const PredictionUnit &pu, CompArea chrom Pel const* piSrc = nullptr; #if JVET_L0136_L0085_LM_RESTRICTED_LINEBUFFER - bool bIsFirstRowOfCtu = ((pu.block(COMPONENT_Cb).y)&(((pu.cs->sps)->getMaxCUWidth() >> 1) - 1)) == 0; + bool IsFirstRowOfCtu = ((pu.block(COMPONENT_Cb).y)&(((pu.cs->sps)->getMaxCUWidth() >> 1) - 1)) == 0; #endif if( bAboveAvaillable ) @@ -1410,7 +1410,7 @@ void IntraPrediction::xGetLumaRecPixels(const PredictionUnit &pu, CompArea chrom #endif { #if JVET_L0136_L0085_LM_RESTRICTED_LINEBUFFER - if (bIsFirstRowOfCtu) + if (IsFirstRowOfCtu) { piSrc = pRecSrc0 - iRecStride; -- GitLab