summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorRani Hod <raenye@gmail.com>2006-09-25 16:13:05 +0000
committerRani Hod <raenye@gmail.com>2006-09-25 16:13:05 +0000
commita875ed5d57ce33663fbf49331d2992d2e4f296d5 (patch)
tree74707f68109f5d7ed42fc3dc9a1f3fee4ffd0d47 /firmware
parentb7c87ac5a30e2b9d064ded1ed6dedc1b56d23a0d (diff)
downloadrockbox-a875ed5d57ce33663fbf49331d2992d2e4f296d5.tar.gz
rockbox-a875ed5d57ce33663fbf49331d2992d2e4f296d5.zip
Accepted FS#6023 - ADX codec (some kind of ADPCM).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11046 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/id3.h1
-rw-r--r--firmware/id3.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h
index dc58178d50..2a42788788 100644
--- a/firmware/export/id3.h
+++ b/firmware/export/id3.h
@@ -42,6 +42,7 @@ enum {
42 AFMT_SHN, /* Shorten */ 42 AFMT_SHN, /* Shorten */
43 AFMT_AIFF, /* Audio Interchange File Format */ 43 AFMT_AIFF, /* Audio Interchange File Format */
44 AFMT_SID, /* SID File Format */ 44 AFMT_SID, /* SID File Format */
45 AFMT_ADX, /* ADX */
45 46
46 /* New formats must be added to the end of this list */ 47 /* New formats must be added to the end of this list */
47 48
diff --git a/firmware/id3.c b/firmware/id3.c
index 5dfb3fbe50..d14134f215 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -119,6 +119,8 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] =
119 AFMT_ENTRY("AIFF", "aiff.codec", NULL, NULL ), 119 AFMT_ENTRY("AIFF", "aiff.codec", NULL, NULL ),
120 /* SID File Format */ 120 /* SID File Format */
121 AFMT_ENTRY("SID", "sid.codec", NULL, NULL ), 121 AFMT_ENTRY("SID", "sid.codec", NULL, NULL ),
122 /* ADX File Format */
123 AFMT_ENTRY("ADX", "adx.codec", NULL, NULL ),
122#endif 124#endif
123}; 125};
124 126