summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-08-29 21:15:27 +0000
committerJens Arnold <amiconn@rockbox.org>2005-08-29 21:15:27 +0000
commitd6c054575b4561b4c657565ecb4ff82565fa6c78 (patch)
treec05a7f619a2580a8ae3ee29e863f076d1065c398 /apps/filetypes.c
parent99a0598c284471342fcda1fdcba90d4b666bfbb3 (diff)
downloadrockbox-d6c054575b4561b4c657565ecb4ff82565fa6c78.tar.gz
rockbox-d6c054575b4561b4c657565ecb4ff82565fa6c78.zip
Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7416 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 31852b1aba..ace89154fc 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -40,14 +40,14 @@
40#define MAX_PLUGIN_LENGTH 32 40#define MAX_PLUGIN_LENGTH 32
41 41
42/* max filetypes (plugins & icons stored here) */ 42/* max filetypes (plugins & icons stored here) */
43#if CONFIG_HWCODEC == MASNONE 43#if CONFIG_CODEC == SWCODEC
44#define MAX_FILETYPES 64 44#define MAX_FILETYPES 64
45#else 45#else
46#define MAX_FILETYPES 32 46#define MAX_FILETYPES 32
47#endif 47#endif
48 48
49/* max exttypes (extensions stored here) */ 49/* max exttypes (extensions stored here) */
50#if CONFIG_HWCODEC == MASNONE 50#if CONFIG_CODEC == SWCODEC
51/* Software codecs require more file extensions */ 51/* Software codecs require more file extensions */
52#define MAX_EXTTYPES 64 52#define MAX_EXTTYPES 64
53#else 53#else