summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-07-01 08:40:00 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-07-01 08:40:00 +0000
commit7da040bf22e936c19a495bfe10b746be77a76d21 (patch)
treef3b33a949a50e89eb9f35998fe91e0c3af45590e /apps
parentceab0b04ebb52da8fd632ed051cf833d35bbdd22 (diff)
downloadrockbox-7da040bf22e936c19a495bfe10b746be77a76d21.tar.gz
rockbox-7da040bf22e936c19a495bfe10b746be77a76d21.zip
encoders are not built in sim builds
no need to check for SIMULATOR in the .c files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27209 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/aiff_enc.c4
-rw-r--r--apps/codecs/mp3_enc.c4
-rw-r--r--apps/codecs/wav_enc.c4
-rw-r--r--apps/codecs/wavpack_enc.c4
4 files changed, 0 insertions, 16 deletions
diff --git a/apps/codecs/aiff_enc.c b/apps/codecs/aiff_enc.c
index f728d6f6a5..cfbc95196f 100644
--- a/apps/codecs/aiff_enc.c
+++ b/apps/codecs/aiff_enc.c
@@ -19,8 +19,6 @@
*
****************************************************************************/
-#ifndef SIMULATOR
-
#include <inttypes.h>
#include "codeclib.h"
@@ -404,5 +402,3 @@ enum codec_status codec_main(void)
return CODEC_OK;
} /* codec_start */
-
-#endif /* ndef SIMULATOR */
diff --git a/apps/codecs/mp3_enc.c b/apps/codecs/mp3_enc.c
index 2739778349..17d980fa39 100644
--- a/apps/codecs/mp3_enc.c
+++ b/apps/codecs/mp3_enc.c
@@ -32,8 +32,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
-#ifndef SIMULATOR
-
#include <inttypes.h>
#include "codeclib.h"
@@ -2637,5 +2635,3 @@ enum codec_status codec_main(void)
return CODEC_OK;
} /* codec_start */
-
-#endif /* ndef SIMULATOR */
diff --git a/apps/codecs/wav_enc.c b/apps/codecs/wav_enc.c
index 4cecb0b2b6..b11c3a2e99 100644
--- a/apps/codecs/wav_enc.c
+++ b/apps/codecs/wav_enc.c
@@ -19,8 +19,6 @@
*
****************************************************************************/
-#ifndef SIMULATOR
-
#include <inttypes.h>
#include "codeclib.h"
@@ -393,5 +391,3 @@ enum codec_status codec_main(void)
return CODEC_OK;
} /* codec_start */
-
-#endif /* ndef SIMULATOR */
diff --git a/apps/codecs/wavpack_enc.c b/apps/codecs/wavpack_enc.c
index 7a5f35a53a..652a320546 100644
--- a/apps/codecs/wavpack_enc.c
+++ b/apps/codecs/wavpack_enc.c
@@ -19,8 +19,6 @@
*
****************************************************************************/
-#ifndef SIMULATOR
-
#include "codeclib.h"
#include "libwavpack/wavpack.h"
@@ -474,5 +472,3 @@ enum codec_status codec_main(void)
return CODEC_OK;
} /* codec_start */
-
-#endif /* ndef SIMULATOR */