summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-07-18 18:33:12 +0000
committerDave Chapman <dave@dchapman.com>2006-07-18 18:33:12 +0000
commit752faa4351f9caaa39d6c448490a1e740ea205b0 (patch)
tree7df40871ff8d387d869e47b2552356f3395a48e3 /firmware
parentc5addb17eec7e0823c1880de737c018dc1881f37 (diff)
Patch #5157 by Rainer Sinsch - SID codec
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10237 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/id3.h1
-rw-r--r--firmware/id3.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h
index cc0d422e7a..218db64ac3 100644
--- a/firmware/export/id3.h
+++ b/firmware/export/id3.h
@@ -42,6 +42,7 @@ enum {
AFMT_AAC, /* Advanced Audio Coding (AAC) in M4A container */
AFMT_SHN, /* Shorten */
AFMT_AIFF, /* Audio Interchange File Format */
+ AFMT_SID, /* SID File Format */
/* New formats must be added to the end of this list */
diff --git a/firmware/id3.c b/firmware/id3.c
index 8a1c3e53dc..5b5b7c98a3 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -103,6 +103,7 @@ static const char* const codec_labels[] = {
"AAC", /* Advanced Audio Coding in M4A container */
"SHN", /* Shorten */
"AIFF", /* Audio Interchange File Format */
+ "SID", /* SID File Format */
#endif
};