Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
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
Container Registry
Model registry
Operate
Environments
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
Chris Rosewarne
VVCSoftware_VTM
Commits
039b88ac
Commit
039b88ac
authored
6 years ago
by
LI JINGYA
Committed by
Frank Bossen
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
M0854
parent
9edff45a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/Lib/CommonLib/TypeDef.h
+1
-0
1 addition, 0 deletions
source/Lib/CommonLib/TypeDef.h
source/Lib/EncoderLib/EncSlice.cpp
+6
-0
6 additions, 0 deletions
source/Lib/EncoderLib/EncSlice.cpp
with
7 additions
and
0 deletions
source/Lib/CommonLib/TypeDef.h
+
1
−
0
View file @
039b88ac
...
@@ -127,6 +127,7 @@
...
@@ -127,6 +127,7 @@
#define JVET_M0464_UNI_MTS 1
#define JVET_M0464_UNI_MTS 1
#define JVET_M0068_M0171_MMVD_CLEANUP 1 // MMVD cleanup with 1) flip removal, 2) L1 zero vector fix, 3) bi-pred restriction after merge/MMVD
#define JVET_M0068_M0171_MMVD_CLEANUP 1 // MMVD cleanup with 1) flip removal, 2) L1 zero vector fix, 3) bi-pred restriction after merge/MMVD
#define JVET_M0255_FRACMMVD_SWITCH 1 // disable fractional MVD in MMVD adaptively
#define JVET_M0255_FRACMMVD_SWITCH 1 // disable fractional MVD in MMVD adaptively
#define JVET_M0854_FRACMMVD_SWITCH_FOR_UHD 1 // disable fractional MVD for UHD pictures
#define JVET_M0823_MMVD_ENCOPT 1 // encoder optimization for MMVD
#define JVET_M0823_MMVD_ENCOPT 1 // encoder optimization for MMVD
#define JVET_M0147_DMVR 1 //Decoder side Motion Vector Refinement
#define JVET_M0147_DMVR 1 //Decoder side Motion Vector Refinement
...
...
This diff is collapsed.
Click to expand it.
source/Lib/EncoderLib/EncSlice.cpp
+
6
−
0
View file @
039b88ac
...
@@ -1431,6 +1431,12 @@ void EncSlice::checkDisFracMmvd( Picture* pcPic, uint32_t startCtuTsAddr, uint32
...
@@ -1431,6 +1431,12 @@ void EncSlice::checkDisFracMmvd( Picture* pcPic, uint32_t startCtuTsAddr, uint32
{
{
pcSlice
->
setDisFracMMVD
(
true
);
pcSlice
->
setDisFracMMVD
(
true
);
}
}
#if JVET_M0854_FRACMMVD_SWITCH_FOR_UHD
if
(
!
pcSlice
->
getDisFracMMVD
())
{
bool
useIntegerMVD
=
(
pcPic
->
lwidth
()
*
pcPic
->
lheight
()
>
1920
*
1080
);
pcSlice
->
setDisFracMMVD
(
useIntegerMVD
);
}
#endif
}
}
#endif
#endif
...
...
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