forked from len0rd/rockbox
Remove a couple of redundant array copy operations.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15747 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e2e287d80e
commit
e7988b8d88
2 changed files with 4 additions and 10 deletions
|
|
@ -1098,9 +1098,7 @@ int sb_decode(void *state, SpeexBits *bits, void *vout)
|
|||
innov_save[2*i]=EXTRACT16(PSHR32(exc[i],SIG_SHIFT));
|
||||
}
|
||||
|
||||
for (i=0;i<st->subframeSize;i++)
|
||||
sp[i]=st->excBuf[i];
|
||||
iir_mem16(sp, st->interp_qlpc, sp, st->subframeSize, st->lpcSize,
|
||||
iir_mem16(st->excBuf, st->interp_qlpc, sp, st->subframeSize, st->lpcSize,
|
||||
st->mem_sp, stack);
|
||||
for (i=0;i<st->subframeSize;i++)
|
||||
st->excBuf[i]=EXTRACT16(PSHR32(exc[i],SIG_SHIFT));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue