Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Anton Mitrofanov
x264
Commits
133c700b
Commit
133c700b
authored
Jan 22, 2021
by
Anton Mitrofanov
Browse files
Fix cavlc encoding
parent
0d754ec3
Pipeline
#60027
passed with stages
in 8 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
encoder/cavlc.c
View file @
133c700b
...
...
@@ -91,7 +91,7 @@ static inline int cavlc_block_residual_escape( x264_t *h, int i_suffix_length, i
{
if
(
h
->
sps
->
i_profile_idc
>=
PROFILE_HIGH
)
{
while
(
i_level_code
>
1
<<
(
i_level_prefix
-
3
)
)
while
(
i_level_code
>
=
1
<<
(
i_level_prefix
-
3
)
)
{
i_level_code
-=
1
<<
(
i_level_prefix
-
3
);
i_level_prefix
++
;
...
...
Anton Mitrofanov
@BugMaster
mentioned in issue
videolan/x264#28 (closed)
·
Jan 22, 2021
mentioned in issue
videolan/x264#28 (closed)
mentioned in issue videolan/x264#28
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment