summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-02-16 03:34:39 +0000
committerMohamed Tarek <mt@rockbox.org>2010-02-16 03:34:39 +0000
commit82f05895af2e361b983aa782e4294a641b287429 (patch)
treee2c6dd216900418ca41d3d4a6c19e460a666543e /apps/filetypes.c
parentfd5f8f987396a63ff75b5322e922a9dcfd2b229b (diff)
downloadrockbox-82f05895af2e361b983aa782e4294a641b287429.tar.gz
rockbox-82f05895af2e361b983aa782e4294a641b287429.zip
Initial support for ATRAC3 streams in wav containers.
Current state : - Playback and seeking are possible. - We now support ATRAC3 in any of its possible containers (wav/at3, oma/aa3, and rm/ra). TODO : - Fix joint-stereo decoding for ATRAC3 - the decoder currently produces lots of glitches. - Rename atrac3_oma.c since it works for both oma and wav containers. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24689 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 3feb0f5ab8..e74edff5c2 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -100,6 +100,7 @@ static const struct filetype inbuilt_filetypes[] = {
100 { "tm2", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, 100 { "tm2", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA },
101 { "oma", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, 101 { "oma", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA },
102 { "aa3", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA }, 102 { "aa3", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA },
103 { "at3", FILE_ATTR_AUDIO, Icon_Audio, VOICE_EXT_MPA },
103#endif 104#endif
104 { "m3u", FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST }, 105 { "m3u", FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST },
105 { "m3u8",FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST }, 106 { "m3u8",FILE_ATTR_M3U, Icon_Playlist, LANG_PLAYLIST },