mirror of
https://github.com/xiph/opus.git
synced 2025-06-01 08:07:41 +00:00
Follow up to commit 8b906c102b
Remove two now redundant zeroing loops Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
This commit is contained in:
parent
1a6ae384ef
commit
4357e9390d
1 changed files with 0 additions and 8 deletions
|
@ -394,10 +394,6 @@ static void celt_decode_lost(CELTDecoder * OPUS_RESTRICT st, opus_val16 * OPUS_R
|
|||
|
||||
denormalise_bands(mode, X, freq, bandE, st->start, mode->effEBands, C, 1<<LM);
|
||||
|
||||
c=0; do
|
||||
for (i=0;i<eBands[st->start]<<LM;i++)
|
||||
freq[c*N+i] = 0;
|
||||
while (++c<C);
|
||||
c=0; do {
|
||||
int bound = eBands[effEnd]<<LM;
|
||||
if (st->downsample!=1)
|
||||
|
@ -852,10 +848,6 @@ int celt_decode_with_ec(CELTDecoder * OPUS_RESTRICT st, const unsigned char *dat
|
|||
OPUS_MOVE(decode_mem[c], decode_mem[c]+N, DECODE_BUFFER_SIZE-N+overlap);
|
||||
} while (++c<CC);
|
||||
|
||||
c=0; do
|
||||
for (i=0;i<M*eBands[st->start];i++)
|
||||
freq[c*N+i] = 0;
|
||||
while (++c<C);
|
||||
c=0; do {
|
||||
int bound = M*eBands[effEnd];
|
||||
if (st->downsample!=1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue