Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ECM
ECM
Commits
2b97f6c8
Commit
2b97f6c8
authored
1 year ago
by
Kenneth Andersson
Browse files
Options
Downloads
Patches
Plain Diff
Fix: RPR related for JVET-AG0058
parent
73809510
No related branches found
No related tags found
1 merge request
!624
Fix: RPR related for JVET-AG0058
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Lib/CommonLib/IntraPrediction.cpp
+4
-3
4 additions, 3 deletions
source/Lib/CommonLib/IntraPrediction.cpp
with
4 additions
and
3 deletions
source/Lib/CommonLib/IntraPrediction.cpp
+
4
−
3
View file @
2b97f6c8
...
...
@@ -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;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment