forked from len0rd/rockbox
Optimisation of the midi player, reducing the number of multiplications and memory accesses inside a very frequently executed loop, also does shifting of the whole sample when synthing is done which improves accurracy slightly, ~10% fewer buffer misses
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14983 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cc5b50b231
commit
e1940b87b0
5 changed files with 20 additions and 27 deletions
|
@ -22,8 +22,7 @@
|
|||
extern struct plugin_api * rb;
|
||||
|
||||
int chVol[16] IBSS_ATTR; /* Channel volume */
|
||||
int chPanLeft[16] IBSS_ATTR; /* Channel panning */
|
||||
int chPanRight[16] IBSS_ATTR;
|
||||
int chPan[16] IBSS_ATTR; /* Channel panning */
|
||||
int chPat[16] IBSS_ATTR; /* Channel patch */
|
||||
int chPW[16] IBSS_ATTR; /* Channel pitch wheel, MSB only */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue