Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
jvet
VVCSoftware_VTM
Commits
1da53952
Commit
1da53952
authored
Apr 03, 2019
by
Xiang Li
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'N0483-SBT-TPM' into 'master'
JVET-N0483: disable SBT in TPM See merge request
!413
parents
356c647e
66a03dc1
Pipeline
#1194
passed with stage
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
source/Lib/CommonLib/TypeDef.h
source/Lib/CommonLib/TypeDef.h
+2
-0
source/Lib/CommonLib/Unit.cpp
source/Lib/CommonLib/Unit.cpp
+6
-0
No files found.
source/Lib/CommonLib/TypeDef.h
View file @
1da53952
...
@@ -50,6 +50,8 @@
...
@@ -50,6 +50,8 @@
#include <assert.h>
#include <assert.h>
#include <cassert>
#include <cassert>
#define JVET_N0483_DISABLE_SBT_FOR_TPM 1
#define JVET_N0242_NON_LINEAR_ALF 1 // enable CE5-3.2, Non-linear ALF based on clipping function
#define JVET_N0242_NON_LINEAR_ALF 1 // enable CE5-3.2, Non-linear ALF based on clipping function
#define JVET_N0449_MMVD_SIMP 1 // Configurable number of mmvd distance entries used
#define JVET_N0449_MMVD_SIMP 1 // Configurable number of mmvd distance entries used
...
...
source/Lib/CommonLib/Unit.cpp
View file @
1da53952
...
@@ -338,6 +338,12 @@ const uint8_t CodingUnit::checkAllowedSbt() const
...
@@ -338,6 +338,12 @@ const uint8_t CodingUnit::checkAllowedSbt() const
{
{
return
0
;
return
0
;
}
}
#if JVET_N0483_DISABLE_SBT_FOR_TPM
if
(
triangle
)
{
return
0
;
}
#endif
uint8_t
sbtAllowed
=
0
;
uint8_t
sbtAllowed
=
0
;
int
cuWidth
=
lwidth
();
int
cuWidth
=
lwidth
();
...
...
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