Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VVCSoftware_BMS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
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