Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
ECM
ECM
Commits
5e717dab
Commit
5e717dab
authored
5 years ago
by
Kai Zhang
Browse files
Options
Downloads
Patches
Plain Diff
JVET-P0385 Unified MV rounding
parent
c13af92c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
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/UnitTools.cpp
+9
-0
9 additions, 0 deletions
source/Lib/CommonLib/UnitTools.cpp
with
11 additions
and
0 deletions
source/Lib/CommonLib/TypeDef.h
+
2
−
0
View file @
5e717dab
...
...
@@ -50,6 +50,8 @@
#include
<assert.h>
#include
<cassert>
#define JVET_P0385_UNIFIED_MV_ROUNDING 1
#define JVET_O0145_ENTRYPOINT_SIGNALLING 0 // JVET-O0145: Not signalling num_entry_point_offsets but derive it at decoder
#define JVET_O0625_ALF_PADDING 1 // JVET-O0625/O0654/O0662: Unified padding method in ALF
...
...
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/UnitTools.cpp
+
9
−
0
View file @
5e717dab
...
...
@@ -2843,7 +2843,9 @@ bool PU::getInterMergeSubPuMvpCand(const PredictionUnit &pu, MergeCtx& mrgCtx, b
///////////////////////////////////////////////////////////////////////
//////// GET Initial Temporal Vector ////////
///////////////////////////////////////////////////////////////////////
#if !JVET_P0385_UNIFIED_MV_ROUNDING
int
mvPrec
=
MV_FRACTIONAL_BITS_INTERNAL
;
#endif
Mv
cTempVector
=
cTMv
;
bool
tempLICFlag
=
false
;
...
...
@@ -2865,8 +2867,15 @@ bool PU::getInterMergeSubPuMvpCand(const PredictionUnit &pu, MergeCtx& mrgCtx, b
bool
found
=
false
;
cTempVector
=
cTMv
;
#if JVET_P0385_UNIFIED_MV_ROUNDING
cTempVector
.
changePrecision
(
MV_PRECISION_SIXTEENTH
,
MV_PRECISION_INT
);
int
tempX
=
cTempVector
.
getHor
();
int
tempY
=
cTempVector
.
getVer
();
#else
int
tempX
=
cTempVector
.
getHor
()
>>
mvPrec
;
int
tempY
=
cTempVector
.
getVer
()
>>
mvPrec
;
#endif
centerPos
.
x
=
puPos
.
x
+
(
puSize
.
width
>>
1
)
+
tempX
;
centerPos
.
y
=
puPos
.
y
+
(
puSize
.
height
>>
1
)
+
tempY
;
...
...
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