From 4e2557cfcefcbc55b3823193234aba51d05a7098 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 21 Oct 2008 19:28:40 +0000 Subject: 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 --- apps/metadata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/metadata.c') 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) if (fd < 0) return true; - result = !get_metadata(entry, fd, filename); + result = !get_mp3_metadata(fd, entry, filename); close(fd); -- cgit v1.2.3