Skip to content
Snippets Groups Projects
Commit 2b97f6c8 authored by Kenneth Andersson's avatar Kenneth Andersson
Browse files

Fix: RPR related for JVET-AG0058

parent 73809510
No related branches found
No related tags found
1 merge request!624Fix: RPR related for JVET-AG0058
......@@ -23102,8 +23102,8 @@ void IntraPrediction::getNeiEipCands(const PredictionUnit& pu, static_vector<Eip
if (!slice.isIntra() && compId == COMPONENT_Y)
{
const Picture* const pColPic = slice.getRefPic(RefPicList(slice.isInterB() ? 1 - slice.getColFromL0Flag() : 0), slice.getColRefIdx());
if(pColPic)
bool isRefScaled = pColPic->isRefScaled(slice.getPPS());
if(pColPic && !isRefScaled)
{
const PreCalcValues& pcv = *cs.pcv;
bool c0Avail;
......@@ -23275,8 +23275,9 @@ void IntraPrediction::getNeiEipCands(const PredictionUnit& pu, static_vector<Eip
if (!slice.isIntra() && compId == COMPONENT_Y)
{
const Picture* const pColPic = slice.getRefPic(RefPicList(slice.isInterB() ? 1 - slice.getColFromL0Flag() : 0), slice.getColRefIdx());
bool isRefScaled = pColPic->isRefScaled(slice.getPPS());
 
if(pColPic)
if (pColPic && !isRefScaled)
{
const PreCalcValues& pcv = *cs.pcv;
 
......
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