summaryrefslogtreecommitdiff
path: root/apps/metadata.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/metadata.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/metadata.c')
-rw-r--r--apps/metadata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/metadata.c b/apps/metadata.c
index 619a06e72d..ce3a4ec22a 100644
--- a/apps/metadata.c
+++ b/apps/metadata.c
@@ -60,9 +60,9 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] =
60 /* Audio Interchange File Format */ 60 /* Audio Interchange File Format */
61 [AFMT_AIFF] = 61 [AFMT_AIFF] =
62 AFMT_ENTRY("AIFF", "aiff", "aiff_enc", "aiff\0aif\0"), 62 AFMT_ENTRY("AIFF", "aiff", "aiff_enc", "aiff\0aif\0"),
63 /* Uncompressed PCM in a WAV file */ 63 /* Uncompressed PCM in a WAV file OR ATRAC3 stream in WAV file (.at3) */
64 [AFMT_PCM_WAV] = 64 [AFMT_PCM_WAV] =
65 AFMT_ENTRY("WAV", "wav", "wav_enc", "wav\0" ), 65 AFMT_ENTRY("WAV", "wav", "wav_enc", "wav\0at3\0" ),
66 /* Ogg Vorbis */ 66 /* Ogg Vorbis */
67 [AFMT_OGG_VORBIS] = 67 [AFMT_OGG_VORBIS] =
68 AFMT_ENTRY("Ogg", "vorbis", NULL, "ogg\0oga\0" ), 68 AFMT_ENTRY("Ogg", "vorbis", NULL, "ogg\0oga\0" ),