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_VTM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
14
Merge Requests
14
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
jvet
VVCSoftware_VTM
Commits
fbe7406d
Commit
fbe7406d
authored
Jan 18, 2019
by
Karsten Suehring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove macro JVET_L0111
parent
5f817f6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
source/Lib/CommonLib/TypeDef.h
source/Lib/CommonLib/TypeDef.h
+0
-1
source/Lib/CommonLib/UnitTools.cpp
source/Lib/CommonLib/UnitTools.cpp
+0
-4
No files found.
source/Lib/CommonLib/TypeDef.h
View file @
fbe7406d
...
...
@@ -61,7 +61,6 @@
#define JVET_L0111 1 // Max Tx size for skip
#define JVET_L0209_PCM 1 // PCM mode
#define JVET_L0553_FIX_INITQP 1
...
...
source/Lib/CommonLib/UnitTools.cpp
View file @
fbe7406d
...
...
@@ -5057,12 +5057,8 @@ bool TU::hasTransformSkipFlag(const CodingStructure& cs, const CompArea& area)
{
uint32_t
transformSkipLog2MaxSize
=
cs
.
pps
->
getPpsRangeExtension
().
getLog2MaxTransformSkipBlockSize
();
#if JVET_L0111
SizeType
transformSkipMaxSize
=
1
<<
transformSkipLog2MaxSize
;
return
area
.
width
<=
transformSkipMaxSize
&&
area
.
height
<=
transformSkipMaxSize
;
#else
return
(
area
.
width
*
area
.
height
<=
(
1
<<
(
transformSkipLog2MaxSize
<<
1
))
);
#endif
}
uint32_t
TU
::
getGolombRiceStatisticsIndex
(
const
TransformUnit
&
tu
,
const
ComponentID
&
compID
)
...
...
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