summaryrefslogtreecommitdiff
path: root/apps/metadata.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-10-21 19:28:40 +0000
committerJens Arnold <amiconn@rockbox.org>2008-10-21 19:28:40 +0000
commit4e2557cfcefcbc55b3823193234aba51d05a7098 (patch)
tree3a4a2e3df2e2cf9de3d6a23e0f3ce69a28afcd8a /apps/metadata.c
parent4f81a5482904b20e423abda57613958559f1a713 (diff)
downloadrockbox-4e2557cfcefcbc55b3823193234aba51d05a7098.tar.gz
rockbox-4e2557cfcefcbc55b3823193234aba51d05a7098.zip
Fix .talk clips on hwcodec targets. mp3info() must not call get_metadata(), because this one tries to guess which get_xx_metadata() to call from the extension, and mp3info() is used in talk_file() (extension .talk) on hwcodec.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18855 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata.c')
-rw-r--r--apps/metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/metadata.c b/apps/metadata.c
index 8df046a518..06098b0d35 100644
--- a/apps/metadata.c
+++ b/apps/metadata.c
@@ -191,7 +191,7 @@ bool mp3info(struct mp3entry *entry, const char *filename)
191 if (fd < 0) 191 if (fd < 0)
192 return true; 192 return true;
193 193
194 result = !get_metadata(entry, fd, filename); 194 result = !get_mp3_metadata(fd, entry, filename);
195 195
196 close(fd); 196 close(fd);
197 197