mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02:00
avcodec/qdm2: store bits in an integer instead of float variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b050956334
commit
fbe159e850
@ -822,7 +822,8 @@ static int synthfilt_build_sb_samples(QDM2Context *q, GetBitContext *gb,
|
|||||||
int type34_first;
|
int type34_first;
|
||||||
float type34_div = 0;
|
float type34_div = 0;
|
||||||
float type34_predictor;
|
float type34_predictor;
|
||||||
float samples[10], sign_bits[16];
|
float samples[10];
|
||||||
|
int sign_bits[16];
|
||||||
|
|
||||||
if (length == 0) {
|
if (length == 0) {
|
||||||
// If no data use noise
|
// If no data use noise
|
||||||
|
Loading…
x
Reference in New Issue
Block a user