diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-24 11:46:29 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-24 11:46:29 +0000 |
commit | 45e009a364d3ee105bf6b2ebb2e28445c9c6e3fd (patch) | |
tree | 7c0cff93773ebb8d88a4fc0fecd126fcbee46124 /apps/filetypes.c | |
parent | aa58715a54cb62638b263b7942c46e25ec928534 (diff) | |
download | rockbox-45e009a364d3ee105bf6b2ebb2e28445c9c6e3fd.tar.gz rockbox-45e009a364d3ee105bf6b2ebb2e28445c9c6e3fd.zip |
add SMAF codec (.mmf extension)(FS#10432)
This codec supports only wave data (ADPCM and PCM).
It does not support MIDI, picture, and movie.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24878 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r-- | apps/filetypes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 49ae4afde2..17a1f0345f 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -101,6 +101,7 @@ static const struct filetype inbuilt_filetypes[] = { { "oma", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, { "aa3", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, { "at3", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, + { "mmf", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, #endif { "m3u", FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST }, { "m3u8",FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST }, |