Print a helpful error in the sim for usupported formats in Ogg containers (f.e. Ogg/FLAC)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18623 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2008-09-24 17:43:10 +00:00
parent ff21c63b2b
commit 1121af7b5e

View file

@ -104,6 +104,8 @@ bool get_ogg_metadata(int fd, struct mp3entry* id3)
}
else
{
/* Unsupported format, try to print the marker, catches Ogg/FLAC at least */
DEBUGF("Usupported format in Ogg stream: %16s\n", &buf[28]);
return false;
}