Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VVCSoftware_VTM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
JVET Trac bug tracker
JVET Trac bug tracker
Merge Requests
11
Merge Requests
11
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
jvet
VVCSoftware_VTM
Commits
ea1ff320
Commit
ea1ff320
authored
Jul 21, 2019
by
Chia-Ming Tsai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a size check to ensure only DCT-IF interpolation filter is used for 4x4, 4x8, and 8x4 luma CB
parent
fef5795f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
source/Lib/CommonLib/IntraPrediction.cpp
source/Lib/CommonLib/IntraPrediction.cpp
+1
-0
No files found.
source/Lib/CommonLib/IntraPrediction.cpp
View file @
ea1ff320
...
...
@@ -585,6 +585,7 @@ void IntraPrediction::initPredIntraParams(const PredictionUnit & pu, const CompA
{
const
bool
isRefFilter
=
isIntegerSlope
(
absAng
);
#if JVET_O0277_INTRA_SMALL_BLOCK_DCTIF
CHECK
(
puSize
.
width
*
puSize
.
height
<=
32
,
"DCT-IF interpolation filter is always used for 4x4, 4x8, and 8x4 luma CB"
);
m_ipaParam
.
refFilterFlag
=
isRefFilter
;
#else
m_ipaParam
.
refFilterFlag
=
isRefFilter
&&
puSize
.
width
*
puSize
.
height
>
32
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment