summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-09-01 13:39:39 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-09-01 13:39:39 +0000
commitd67c267090471b4bf7f69b8a7702c22831e99c13 (patch)
tree2fba305ca7aa16cbccd506b8a224d18cf973502a /firmware/export
parentef197fbc9905e69fd76a76cd3a06284de7a044fb (diff)
downloadrockbox-d67c267090471b4bf7f69b8a7702c22831e99c13.zip
rockbox-d67c267090471b4bf7f69b8a7702c22831e99c13.tar.gz
rockbox-d67c267090471b4bf7f69b8a7702c22831e99c13.tar.bz2
rockbox-d67c267090471b4bf7f69b8a7702c22831e99c13.tar.xz
Fixed the WPS codec type conditional, and removed unsupported formats from the format enum
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7441 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/id3.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h
index 5deebd4..d9b0432 100644
--- a/firmware/export/id3.h
+++ b/firmware/export/id3.h
@@ -28,26 +28,19 @@
enum {
AFMT_UNKNOWN = 1, /* Unknown file format */
-#if CONFIG_CODEC==SWCODEC
AFMT_MPA_L1, /* MPEG Audio layer 1 */
-#endif
AFMT_MPA_L2, /* MPEG Audio layer 2 */
AFMT_MPA_L3, /* MPEG Audio layer 3 */
-#if CONFIG_CODEC==SWCODEC
AFMT_PCM_WAV, /* Uncompressed PCM in a WAV file */
AFMT_OGG_VORBIS, /* Ogg Vorbis */
AFMT_FLAC, /* FLAC */
AFMT_MPC, /* Musepack */
- AFMT_AAC, /* AAC */
- AFMT_APE, /* Monkey's Audio */
- AFMT_WMA, /* Windows Media Audio */
AFMT_A52, /* A/52 (aka AC3) audio */
- AFMT_REAL, /* Realaudio */
AFMT_WAVPACK, /* WavPack */
-#endif
+ /* New formats must be added to the end of this list */
AFMT_ENDMARKER /* THIS MUST BE THE LAST VALUE */
};