1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jens Arnold 2008-10-21 19:28:40 +00:00
parent 4f81a54829
commit 4e2557cfce

View file

@ -191,7 +191,7 @@ bool mp3info(struct mp3entry *entry, const char *filename)
if (fd < 0) if (fd < 0)
return true; return true;
result = !get_metadata(entry, fd, filename); result = !get_mp3_metadata(fd, entry, filename);
close(fd); close(fd);