Commit 8f099571 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/qdm2: initialize sign_bits

Fixes non deterministic output
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fbe159e8
......@@ -823,7 +823,7 @@ static int synthfilt_build_sb_samples(QDM2Context *q, GetBitContext *gb,
float type34_div = 0;
float type34_predictor;
float samples[10];
int sign_bits[16];
int sign_bits[16] = {0};
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