Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VVCSoftware_BMS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
JVET Trac bug tracker
JVET Trac bug tracker
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jvet
VVCSoftware_BMS
Commits
bc3fd6d8
Commit
bc3fd6d8
authored
Sep 13, 2018
by
Frank Bossen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ternary-split' into 'master'
Ternary split: fix for issue #87 See merge request
!111
parents
971390c9
acf8643e
Pipeline
#111
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
source/Lib/CommonLib/UnitPartitioner.cpp
source/Lib/CommonLib/UnitPartitioner.cpp
+2
-2
No files found.
source/Lib/CommonLib/UnitPartitioner.cpp
View file @
bc3fd6d8
...
...
@@ -472,11 +472,11 @@ bool QTBTPartitioner::canSplit( const PartSplit split, const CodingStructure &cs
break
;
case
CU_TRIH_SPLIT
:
if
(
(
cs
.
sps
->
getSpsNext
().
getMTTMode
()
&
1
)
!=
1
)
return
false
;
if
(
area
.
height
<=
2
*
minTtSize
||
area
.
height
>
maxTtSize
)
return
false
;
if
(
area
.
height
<=
2
*
minTtSize
||
area
.
height
>
maxTtSize
||
area
.
width
>
maxTtSize
)
return
false
;
break
;
case
CU_TRIV_SPLIT
:
if
(
(
cs
.
sps
->
getSpsNext
().
getMTTMode
()
&
1
)
!=
1
)
return
false
;
if
(
area
.
width
<=
2
*
minTtSize
||
area
.
width
>
maxTtSize
)
return
false
;
if
(
area
.
width
<=
2
*
minTtSize
||
area
.
width
>
maxTtSize
||
area
.
height
>
maxTtSize
)
return
false
;
break
;
default:
break
;
...
...
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