summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/wv2wav.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/apps/plugins/wv2wav.c b/apps/plugins/wv2wav.c
index 1a3cd83720..c0bc05cf12 100644
--- a/apps/plugins/wv2wav.c
+++ b/apps/plugins/wv2wav.c
@@ -135,6 +135,12 @@ long Read(void* buffer, long size)
135 return (file_info.curpos - oldpos); 135 return (file_info.curpos - oldpos);
136} 136}
137 137
138#ifdef USE_IRAM
139extern char iramcopy[];
140extern char iramstart[];
141extern char iramend[];
142#endif
143
138/* this is the plugin entry point */ 144/* this is the plugin entry point */
139enum plugin_status plugin_start(struct plugin_api* api, void* file) 145enum plugin_status plugin_start(struct plugin_api* api, void* file)
140{ 146{
@@ -144,7 +150,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
144 /* generic plugin initialisation */ 150 /* generic plugin initialisation */
145 TEST_PLUGIN_API(api); 151 TEST_PLUGIN_API(api);
146 rb = api; 152 rb = api;
147 153
154 #ifdef USE_IRAM
155 rb->memcpy(iramstart, iramcopy, iramend-iramstart);
156 #endif
157
148 /* this function sets up the buffers and reads the file into RAM */ 158 /* this function sets up the buffers and reads the file into RAM */
149 if (local_init(file,"/wvtest.wav",&file_info,api)) 159 if (local_init(file,"/wvtest.wav",&file_info,api))
150 { 160 {