summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
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