Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
Manage
Activity
Members
Labels
Plan
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
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
Keming Cao
VVCSoftware_VTM
Commits
809de035
Commit
809de035
authored
5 years ago
by
Frank Bossen
Browse files
Options
Downloads
Patches
Plain Diff
JVET-O0364 part 4: align PDPC process for DC with the one for Planar
parent
34bbb220
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/Lib/CommonLib/IntraPrediction.cpp
+6
-0
6 additions, 0 deletions
source/Lib/CommonLib/IntraPrediction.cpp
source/Lib/CommonLib/TypeDef.h
+2
-0
2 additions, 0 deletions
source/Lib/CommonLib/TypeDef.h
with
8 additions
and
0 deletions
source/Lib/CommonLib/IntraPrediction.cpp
+
6
−
0
View file @
809de035
...
@@ -323,7 +323,11 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
...
@@ -323,7 +323,11 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
const
int
scale
=
((
g_aucLog2
[
iWidth
]
-
2
+
g_aucLog2
[
iHeight
]
-
2
+
2
)
>>
2
);
const
int
scale
=
((
g_aucLog2
[
iWidth
]
-
2
+
g_aucLog2
[
iHeight
]
-
2
+
2
)
>>
2
);
CHECK
(
scale
<
0
||
scale
>
31
,
"PDPC: scale < 0 || scale > 31"
);
CHECK
(
scale
<
0
||
scale
>
31
,
"PDPC: scale < 0 || scale > 31"
);
#if JVET_O0364_PDPC_DC
if
(
uiDirMode
==
PLANAR_IDX
||
uiDirMode
==
DC_IDX
)
#else
if
(
uiDirMode
==
PLANAR_IDX
)
if
(
uiDirMode
==
PLANAR_IDX
)
#endif
{
{
for
(
int
y
=
0
;
y
<
iHeight
;
y
++
)
for
(
int
y
=
0
;
y
<
iHeight
;
y
++
)
{
{
...
@@ -337,6 +341,7 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
...
@@ -337,6 +341,7 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
}
}
}
}
}
}
#if !JVET_O0364_PDPC_DC
else
if
(
uiDirMode
==
DC_IDX
)
else
if
(
uiDirMode
==
DC_IDX
)
{
{
const
Pel
topLeft
=
srcBuf
.
at
(
0
,
0
);
const
Pel
topLeft
=
srcBuf
.
at
(
0
,
0
);
...
@@ -353,6 +358,7 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
...
@@ -353,6 +358,7 @@ void IntraPrediction::predIntraAng( const ComponentID compId, PelBuf &piPred, co
}
}
}
}
}
}
#endif
else
if
(
uiDirMode
==
HOR_IDX
)
else
if
(
uiDirMode
==
HOR_IDX
)
{
{
const
Pel
topLeft
=
srcBuf
.
at
(
0
,
0
);
const
Pel
topLeft
=
srcBuf
.
at
(
0
,
0
);
...
...
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/TypeDef.h
+
2
−
0
View file @
809de035
...
@@ -76,6 +76,8 @@
...
@@ -76,6 +76,8 @@
#define JVET_O0280_SIMD_TRIANGLE_WEIGHTING 1 // JVET-O0280: SIMD implementation for weighted sample prediction process of triangle prediction mode
#define JVET_O0280_SIMD_TRIANGLE_WEIGHTING 1 // JVET-O0280: SIMD implementation for weighted sample prediction process of triangle prediction mode
#define JVET_O0364_PDPC_DC 1 // JVET-O0364 Part 4: align PDPC process for DC with the one for Planar
#define FIX_DB_MAX_TRANSFORM_SIZE 1
#define FIX_DB_MAX_TRANSFORM_SIZE 1
#define MRG_SHARELIST_SHARSIZE 32
#define MRG_SHARELIST_SHARSIZE 32
...
...
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