summaryrefslogtreecommitdiff
path: root/apps/metadata.c
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2009-07-27 11:36:26 +0000
committerMohamed Tarek <mt@rockbox.org>2009-07-27 11:36:26 +0000
commit320bd1adb84392273b7b713795a6148359395cf7 (patch)
treec521c720361b8eb0e08c45e7ca0fe8d4c28e71cf /apps/metadata.c
parentc393b1dc5c9cfcf4302430af1bcb104fa1628c38 (diff)
downloadrockbox-320bd1adb84392273b7b713795a6148359395cf7.tar.gz
rockbox-320bd1adb84392273b7b713795a6148359395cf7.zip
Fix a bug spotted by Maurus Cuelenaere; rockbox crashed on viewing the porperties of files with unsupported extensions due to the null ext list in
raac. Also add support for audio-only rmvb files. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22065 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 80f2c126e2..d01173737c 100644
--- a/apps/metadata.c
+++ b/apps/metadata.c
@@ -117,10 +117,10 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] =
117 AFMT_ENTRY("SAP", "asap", NULL, "sap\0" ), 117 AFMT_ENTRY("SAP", "asap", NULL, "sap\0" ),
118 /* Cook in RM/RA */ 118 /* Cook in RM/RA */
119 [AFMT_COOK] = 119 [AFMT_COOK] =
120 AFMT_ENTRY("Cook", "cook", NULL, "rm\0ra\0" ), 120 AFMT_ENTRY("Cook", "cook", NULL, "rm\0ra\0rmvb\0" ),
121 /* AAC in RM/RA */ 121 /* AAC in RM/RA */
122 [AFMT_RAAC] = 122 [AFMT_RAAC] =
123 AFMT_ENTRY("RAAC", "raac", NULL, NULL ), 123 AFMT_ENTRY("RAAC", "raac", NULL, "rm\0ra\0rmvb\0" ),
124#endif 124#endif
125}; 125};
126 126