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:
parent
4f81a54829
commit
4e2557cfce
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue