Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
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
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
jvet
VVCSoftware_VTM
Commits
5cb897bc
Commit
5cb897bc
authored
4 years ago
by
Taoran Lu
Browse files
Options
Downloads
Patches
Plain Diff
fix film grain sei encoder
parent
794cc2ba
No related branches found
No related tags found
1 merge request
!1498
fix #1000: film grain SEI encoder use wrong bits to signal num_model_values_minus1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Lib/EncoderLib/SEIwrite.cpp
+1
-1
1 addition, 1 deletion
source/Lib/EncoderLib/SEIwrite.cpp
with
1 addition
and
1 deletion
source/Lib/EncoderLib/SEIwrite.cpp
+
1
−
1
View file @
5cb897bc
...
...
@@ -818,7 +818,7 @@ void SEIWriter::xWriteSEIFilmGrainCharacteristics(const SEIFilmGrainCharacterist
assert
(
numIntensityIntervals
<=
256
);
assert
(
numModelValues
<=
256
);
WRITE_CODE
(
numIntensityIntervals
-
1
,
8
,
"num_intensity_intervals_minus1[c]"
);
WRITE_CODE
(
numModelValues
-
1
,
8
,
"num_model_values_minus1[c]"
);
WRITE_CODE
(
numModelValues
-
1
,
3
,
"num_model_values_minus1[c]"
);
for
(
uint32_t
interval
=
0
;
interval
<
numIntensityIntervals
;
interval
++
)
{
const
SEIFilmGrainCharacteristics
::
CompModelIntensityValues
&
cmiv
=
cm
.
intensityValues
[
interval
];
...
...
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