1
0
Fork 0
forked from len0rd/rockbox

Put Musepack output data array back in IRAM for faster DSP processing. Patch by Andrew Cupper.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10844 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-09-01 12:09:20 +00:00
parent 5e182e0862
commit 7197c0e588
3 changed files with 13 additions and 9 deletions

View file

@ -124,8 +124,8 @@ typedef struct mpc_decoder_t {
MPC_SAMPLE_FORMAT V_L[MPC_V_MEM + 960];
MPC_SAMPLE_FORMAT V_R[MPC_V_MEM + 960];
MPC_SAMPLE_FORMAT Y_L[36][32];
MPC_SAMPLE_FORMAT Y_R[36][32];
MPC_SAMPLE_FORMAT (*Y_L)[32];
MPC_SAMPLE_FORMAT (*Y_R)[32];
MPC_SAMPLE_FORMAT SCF[256]; ///< holds adapted scalefactors (for clipping prevention)
//@}