summaryrefslogtreecommitdiff
path: root/apps/plugins/mpa2wav.c
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-03-04 10:37:15 +0000
committerThom Johansen <thomj@rockbox.org>2005-03-04 10:37:15 +0000
commitee811a34433e88c965090fc9e936dc46db48f737 (patch)
tree3c6c60ae6434d760435985f3f4731c3a02840618 /apps/plugins/mpa2wav.c
parentd787c836bcaa0193ea1cfd5ac4a7918a52291e52 (diff)
downloadrockbox-ee811a34433e88c965090fc9e936dc46db48f737.tar.gz
rockbox-ee811a34433e88c965090fc9e936dc46db48f737.zip
Inserted optimized synth_full and put some vital data in IRAM.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6131 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpa2wav.c')
-rw-r--r--apps/plugins/mpa2wav.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mpa2wav.c b/apps/plugins/mpa2wav.c
index 2a87801999..6c28100800 100644
--- a/apps/plugins/mpa2wav.c
+++ b/apps/plugins/mpa2wav.c
@@ -28,9 +28,9 @@
28 28
29static struct plugin_api* rb; 29static struct plugin_api* rb;
30 30
31struct mad_stream Stream; 31struct mad_stream Stream __attribute__ ((section(".idata")));
32struct mad_frame Frame; 32struct mad_frame Frame __attribute__ ((section(".idata")));
33struct mad_synth Synth; 33struct mad_synth Synth __attribute__ ((section(".idata")));
34mad_timer_t Timer; 34mad_timer_t Timer;
35struct dither d0, d1; 35struct dither d0, d1;
36 36