summaryrefslogtreecommitdiff
path: root/apps/codecs/codec.h
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-11-26 18:31:41 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-11-26 18:31:41 +0000
commit80da8b141c4672ca4380d66094976b6342ed5071 (patch)
tree631e9edd537ae9983524622a9e1ec82e24957280 /apps/codecs/codec.h
parent8ef3c8a342d41c2aa5e5d8370fd4e89d4d8d937e (diff)
downloadrockbox-80da8b141c4672ca4380d66094976b6342ed5071.tar.gz
rockbox-80da8b141c4672ca4380d66094976b6342ed5071.zip
FS#6357, patch 1: let iramcopy and bss share the same space in codecs and
plugins. Currently, in case of plugins using IRAM bss is cleared twice, once in the loader, once in PLUGIN_IRAM_INIT. For codecs, bss is cleared only during codec initialization. Also, removed double variables in codecs storing a pointer to codec_api. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11606 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/codec.h')
-rw-r--r--apps/codecs/codec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/codec.h b/apps/codecs/codec.h
index daa7c19cd7..44d5a110bd 100644
--- a/apps/codecs/codec.h
+++ b/apps/codecs/codec.h
@@ -24,6 +24,8 @@
24 24
25#include <sys/types.h> 25#include <sys/types.h>
26 26
27extern struct codec_api *ci;
28
27/* Get these functions 'out of the way' of the standard functions. Not doing 29/* Get these functions 'out of the way' of the standard functions. Not doing
28 * so confuses the cygwin linker, and maybe others. These functions need to 30 * so confuses the cygwin linker, and maybe others. These functions need to
29 * be implemented elsewhere */ 31 * be implemented elsewhere */