FS #8680. MOD codec by Rainer Sinsch.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17595 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2008-05-21 11:19:58 +00:00
parent c78bb5a00e
commit c0f7eb9f9d
10 changed files with 1406 additions and 0 deletions

View file

@ -57,6 +57,7 @@ enum
AFMT_SPC, /* SPC700 save state */
AFMT_APE, /* Monkey's Audio (APE) */
AFMT_WMA, /* WMAV1/V2 in ASF */
AFMT_MOD, /* Amiga MOD File Format */
#endif
/* add new formats at any index above this line to have a sensible order -

View file

@ -112,6 +112,9 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] =
/* WMA (WMAV1/V2 in ASF) */
[AFMT_WMA] =
AFMT_ENTRY("WMA", "wma", NULL, "wma\0wmv\0asf\0" ),
/* Amiga MOD File */
[AFMT_MOD] =
AFMT_ENTRY("MOD", "mod", NULL, "mod\0" ),
#endif
};