summaryrefslogtreecommitdiff
path: root/apps/codecs.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
committerNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
commit605949d48239551f721f5e8110d5f1001a2b2623 (patch)
treeb809945dea13749f8d1881ba50611f6dbfed71d8 /apps/codecs.h
parent6d0ee558e86beece998bfa032c06b091cf723355 (diff)
downloadrockbox-605949d48239551f721f5e8110d5f1001a2b2623.tar.gz
rockbox-605949d48239551f721f5e8110d5f1001a2b2623.zip
Hide symbols by default on 64 bit sim buildsto avoid clashing, fixes crashing on track change with the same codec, crashing in calculator and text display in midiplay
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14953 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.h')
-rw-r--r--apps/codecs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index 50bc36baa2..a59a791d42 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -267,7 +267,8 @@ extern unsigned char plugin_end_addr[];
267#else /* def SIMULATOR */ 267#else /* def SIMULATOR */
268/* decoders */ 268/* decoders */
269#define CODEC_HEADER \ 269#define CODEC_HEADER \
270 const struct codec_header __header = { \ 270 const struct codec_header __header \
271 __attribute__((visibility("default"))) = { \
271 CODEC_MAGIC, TARGET_ID, CODEC_API_VERSION, \ 272 CODEC_MAGIC, TARGET_ID, CODEC_API_VERSION, \
272 NULL, NULL, codec_start }; 273 NULL, NULL, codec_start };
273/* encoders */ 274/* encoders */