summaryrefslogtreecommitdiff
path: root/apps/codecs.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
committerBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
commita36cdf5b37994a301d4fdeab123ee1569a34cf46 (patch)
tree5794a1f13f93e3d7190572e07709aa1a11e9e892 /apps/codecs.c
parentf9329e4c9273f1b82aa5dbb36f243546ce55036d (diff)
downloadrockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.tar.gz
rockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.zip
Removed the sim_ prefix from the plugin api.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.c')
-rw-r--r--apps/codecs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index 8f5a0e36fd..2c547ffd5d 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -56,6 +56,12 @@
56#include "logf.h" 56#include "logf.h"
57 57
58#ifdef SIMULATOR 58#ifdef SIMULATOR
59#define PREFIX(_x_) sim_ ## _x_
60#else
61#define PREFIX
62#endif
63
64#ifdef SIMULATOR
59#if CONFIG_CODEC == SWCODEC 65#if CONFIG_CODEC == SWCODEC
60unsigned char codecbuf[CODEC_SIZE]; 66unsigned char codecbuf[CODEC_SIZE];
61#endif 67#endif