More use of CELT_MEMSET
This commit is contained in:
parent
7f28f768e7
commit
57e004bf74
1 changed files with 2 additions and 5 deletions
|
@ -181,11 +181,8 @@ static void compute_mdcts(const CELTMode *mode, const celt_word16_t * restrict w
|
|||
x1++;
|
||||
x2--;
|
||||
}
|
||||
for (j=0;j<N4;j++)
|
||||
{
|
||||
x[j] = 0;
|
||||
x[2*N-j-1] = 0;
|
||||
}
|
||||
CELT_MEMSET(x, 0, N4);
|
||||
CELT_MEMSET(x+2*N-N4, 0, N4);
|
||||
mdct_forward(lookup, x, tmp);
|
||||
/* Interleaving the sub-frames */
|
||||
for (j=0;j<N;j++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue