Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
633ddb85
Commit
633ddb85
authored
Oct 09, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3dec: use get_sbits() instead of manually sign-extending
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
84dda407
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ac3dec.c
libavcodec/ac3dec.c
+2
-2
No files found.
libavcodec/ac3dec.c
View file @
633ddb85
...
@@ -505,9 +505,9 @@ static void ac3_decode_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, ma
...
@@ -505,9 +505,9 @@ static void ac3_decode_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, ma
mantissa
=
b5_mantissas
[
get_bits
(
gbc
,
4
)];
mantissa
=
b5_mantissas
[
get_bits
(
gbc
,
4
)];
break
;
break
;
default:
/* 6 to 15 */
default:
/* 6 to 15 */
mantissa
=
get_bits
(
gbc
,
quantization_tab
[
bap
]);
/* Shift mantissa and sign-extend it. */
/* Shift mantissa and sign-extend it. */
mantissa
=
(
mantissa
<<
(
32
-
quantization_tab
[
bap
]))
>>
8
;
mantissa
=
get_sbits
(
gbc
,
quantization_tab
[
bap
]);
mantissa
<<=
24
-
quantization_tab
[
bap
];
break
;
break
;
}
}
coeffs
[
freq
]
=
mantissa
>>
exps
[
freq
];
coeffs
[
freq
]
=
mantissa
>>
exps
[
freq
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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