From a23303695e58d2b451c954819009ef4437b1cdde Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 29 Apr 2004 01:18:15 +0000 Subject: MP3 files with VBRI frames were parsed incorrectly, and the VBRI frame was partly fed to the MAS, giving playback glitches git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4560 a1c6a512-1295-4272-9138-f99709370657 --- firmware/mp3data.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/mp3data.c b/firmware/mp3data.c index 5b56c6f6e4..5dbf49a6da 100644 --- a/firmware/mp3data.c +++ b/firmware/mp3data.c @@ -464,9 +464,11 @@ int get_mp3file_info(int fd, struct mp3info *info) /* Now get the next frame to find out the real info about the mp3 stream */ - header = find_next_frame(fd, &bytecount, 0x20000, 0); + header = find_next_frame(fd, &tmp, 0x20000, 0); if(header == 0) return -6; + + bytecount += tmp; if(!mp3headerinfo(info, header)) return -7; -- cgit v1.2.3