Skip to content

Commit

Permalink
WIP: More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmvalin committed Jan 17, 2025
1 parent 24f5b68 commit 0797d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celt/celt_decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ static void celt_decode_lost(CELTDecoder * OPUS_RESTRICT st, int N, int LM
for (j=0;j<blen;j++)
{
seed = celt_lcg_rand(seed);
X[boffs+j] = (celt_norm)((opus_int32)seed>>20);
X[boffs+j] = SHL32((celt_norm)((opus_int32)seed>>20), NORM_SHIFT-14);
}
renormalise_vector(X+boffs, blen, Q31ONE, st->arch);
}
Expand Down

0 comments on commit 0797d0a

Please sign in to comment.