Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM-tmuc
Manage
Activity
Members
Labels
Plan
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
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
Thibaud Biatek
VVCSoftware_VTM-tmuc
Commits
f96d4f02
Commit
f96d4f02
authored
6 years ago
by
Jie
Browse files
Options
Downloads
Patches
Plain Diff
fix ticket #217 misalignment on MRG_MAX_NUM_CANDS
parent
ca220f94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Lib/CommonLib/CommonDef.h
+2
-2
2 additions, 2 deletions
source/Lib/CommonLib/CommonDef.h
with
2 additions
and
2 deletions
source/Lib/CommonLib/CommonDef.h
+
2
−
2
View file @
f96d4f02
...
...
@@ -146,7 +146,7 @@ static const int NOT_VALID = -1;
static
const
int
AMVP_MAX_NUM_CANDS
=
2
;
///< AMVP: advanced motion vector prediction - max number of final candidates
static
const
int
AMVP_MAX_NUM_CANDS_MEM
=
3
;
///< AMVP: advanced motion vector prediction - max number of candidates
static
const
int
AMVP_DECIMATION_FACTOR
=
2
;
static
const
int
MRG_MAX_NUM_CANDS
=
7
;
///< MERGE
static
const
int
MRG_MAX_NUM_CANDS
=
6
;
///< MERGE
static
const
int
AFFINE_MRG_MAX_NUM_CANDS
=
5
;
///< AFFINE MERGE
static
const
int
MAX_TLAYER
=
7
;
///< Explicit temporal layer QP offset - max number of temporal layer
...
...
@@ -327,7 +327,7 @@ static const int BIO_TEMP_BUFFER_SIZE = (MAX_CU_SIZE
static
const
int
GBI_NUM
=
5
;
///< the number of weight options
static
const
int
GBI_DEFAULT
=
((
uint8_t
)(
GBI_NUM
>>
1
));
///< Default weighting index representing for w=0.5
static
const
int
GBI_SIZE_CONSTRAINT
=
256
;
///< disabling GBi if cu size is smaller than 256
static
const
int
MAX_NUM_HMVP_CANDS
=
5
;
///< maximum number of HMVP candidates to be stored and used in merge list
static
const
int
MAX_NUM_HMVP_CANDS
=
(
MRG_MAX_NUM_CANDS
-
1
)
;
///< maximum number of HMVP candidates to be stored and used in merge list
static
const
int
MAX_NUM_HMVP_AVMPCANDS
=
4
;
///< maximum number of HMVP candidates to be used in AMVP list
#if W0038_DB_OPT
...
...
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