Commit fbe159e8 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/qdm2: store bits in an integer instead of float variable

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0509563
......@@ -822,7 +822,8 @@ static int synthfilt_build_sb_samples(QDM2Context *q, GetBitContext *gb,
int type34_first;
float type34_div = 0;
float type34_predictor;
float samples[10], sign_bits[16];
float samples[10];
int sign_bits[16];
if (length == 0) {
// If no data use noise
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment