summaryrefslogtreecommitdiff
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
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
-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 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#ifndef SIMULATOR
23
24#include <inttypes.h> 22#include <inttypes.h>
25#include "codeclib.h" 23#include "codeclib.h"
26 24
@@ -404,5 +402,3 @@ enum codec_status codec_main(void)
404 402
405 return CODEC_OK; 403 return CODEC_OK;
406} /* codec_start */ 404} /* codec_start */
407
408#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 @@
32// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 32// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33// Library General Public License for more details. 33// Library General Public License for more details.
34 34
35#ifndef SIMULATOR
36
37#include <inttypes.h> 35#include <inttypes.h>
38#include "codeclib.h" 36#include "codeclib.h"
39 37
@@ -2637,5 +2635,3 @@ enum codec_status codec_main(void)
2637 2635
2638 return CODEC_OK; 2636 return CODEC_OK;
2639} /* codec_start */ 2637} /* codec_start */
2640
2641#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 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#ifndef SIMULATOR
23
24#include <inttypes.h> 22#include <inttypes.h>
25#include "codeclib.h" 23#include "codeclib.h"
26 24
@@ -393,5 +391,3 @@ enum codec_status codec_main(void)
393 391
394 return CODEC_OK; 392 return CODEC_OK;
395} /* codec_start */ 393} /* codec_start */
396
397#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 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#ifndef SIMULATOR
23
24#include "codeclib.h" 22#include "codeclib.h"
25#include "libwavpack/wavpack.h" 23#include "libwavpack/wavpack.h"
26 24
@@ -474,5 +472,3 @@ enum codec_status codec_main(void)
474 472
475 return CODEC_OK; 473 return CODEC_OK;
476} /* codec_start */ 474} /* codec_start */
477
478#endif /* ndef SIMULATOR */