Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECM-TEST1.2c
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
Myungoh Hong
ECM-TEST1.2c
Commits
7cf7f162
Commit
7cf7f162
authored
5 years ago
by
Tangi Poirier
Committed by
Karsten Suehring
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix #919: Add check parameter for combination of Affine Amvr and IMV
parent
d35386d9
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/App/EncoderApp/EncAppCfg.cpp
+6
-0
6 additions, 0 deletions
source/App/EncoderApp/EncAppCfg.cpp
with
6 additions
and
0 deletions
source/App/EncoderApp/EncAppCfg.cpp
+
6
−
0
View file @
7cf7f162
...
@@ -3664,6 +3664,12 @@ bool EncAppCfg::xCheckParameter()
...
@@ -3664,6 +3664,12 @@ bool EncAppCfg::xCheckParameter()
xConfirmPara
(
m_preferredTransferCharacteristics
>
255
,
"transfer_characteristics_idc should not be greater than 255."
);
xConfirmPara
(
m_preferredTransferCharacteristics
>
255
,
"transfer_characteristics_idc should not be greater than 255."
);
#endif
#endif
xConfirmPara
(
unsigned
(
m_ImvMode
)
>
1
,
"ImvMode exceeds range (0 to 1)"
);
xConfirmPara
(
unsigned
(
m_ImvMode
)
>
1
,
"ImvMode exceeds range (0 to 1)"
);
#if JVET_Q0444_AMVR_SIGNALLING
if
(
m_AffineAmvr
)
{
xConfirmPara
(
!
m_ImvMode
,
"AffineAmvr cannot be used when IMV is disabled."
);
}
#endif
xConfirmPara
(
m_decodeBitstreams
[
0
]
==
m_bitstreamFileName
,
"Debug bitstream and the output bitstream cannot be equal.
\n
"
);
xConfirmPara
(
m_decodeBitstreams
[
0
]
==
m_bitstreamFileName
,
"Debug bitstream and the output bitstream cannot be equal.
\n
"
);
xConfirmPara
(
m_decodeBitstreams
[
1
]
==
m_bitstreamFileName
,
"Decode2 bitstream and the output bitstream cannot be equal.
\n
"
);
xConfirmPara
(
m_decodeBitstreams
[
1
]
==
m_bitstreamFileName
,
"Decode2 bitstream and the output bitstream cannot be equal.
\n
"
);
xConfirmPara
(
unsigned
(
m_LMChroma
)
>
1
,
"LMMode exceeds range (0 to 1)"
);
xConfirmPara
(
unsigned
(
m_LMChroma
)
>
1
,
"LMMode exceeds range (0 to 1)"
);
...
...
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