Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
jvet
VVCSoftware_VTM
Commits
b8508d30
Commit
b8508d30
authored
6 years ago
by
Xiang Li
Browse files
Options
Downloads
Patches
Plain Diff
Integration of JVET-M0446, JVET-M0888 and JVET-M0905 on VPDU constraint at picture boundary
parent
d16775e8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!168
JVET-M0446, JVET-M0888 and JVET-M0905 on VPDU constraint at picture boundary
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/Lib/CommonLib/TypeDef.h
+2
-0
2 additions, 0 deletions
source/Lib/CommonLib/TypeDef.h
source/Lib/CommonLib/UnitPartitioner.cpp
+6
-0
6 additions, 0 deletions
source/Lib/CommonLib/UnitPartitioner.cpp
with
8 additions
and
0 deletions
source/Lib/CommonLib/TypeDef.h
+
2
−
0
View file @
b8508d30
...
@@ -76,6 +76,8 @@ typedef std::pair<int, int> TrCost;
...
@@ -76,6 +76,8 @@ typedef std::pair<int, int> TrCost;
#define REMOVE_BIN_DECISION_TREE 1
#define REMOVE_BIN_DECISION_TREE 1
#define JVET_M0446_M0888_M0905_VPDU_AT_PIC_BOUNDARY 1
// clang-format off
// clang-format off
#define JVET_M0453_CABAC_ENGINE 1
#define JVET_M0453_CABAC_ENGINE 1
...
...
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/UnitPartitioner.cpp
+
6
−
0
View file @
b8508d30
...
@@ -575,6 +575,12 @@ PartSplit QTBTPartitioner::getImplicitSplit( const CodingStructure &cs )
...
@@ -575,6 +575,12 @@ PartSplit QTBTPartitioner::getImplicitSplit( const CodingStructure &cs )
{
{
split
=
CU_QUAD_SPLIT
;
split
=
CU_QUAD_SPLIT
;
}
}
#if JVET_M0446_M0888_M0905_VPDU_AT_PIC_BOUNDARY
if
((
!
isBlInPic
||
!
isTrInPic
)
&&
(
currArea
().
Y
().
width
>
MAX_TU_SIZE_FOR_PROFILE
||
currArea
().
Y
().
height
>
MAX_TU_SIZE_FOR_PROFILE
))
{
split
=
CU_QUAD_SPLIT
;
}
#endif
}
}
m_partStack
.
back
().
checkdIfImplicit
=
true
;
m_partStack
.
back
().
checkdIfImplicit
=
true
;
...
...
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