diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-29 01:18:15 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-29 01:18:15 +0000 |
| commit | a23303695e58d2b451c954819009ef4437b1cdde (patch) | |
| tree | 09a3d76be751f893d0a18109ef4f3223e3a0ae20 /firmware/mp3data.c | |
| parent | bd3d297b3186185d43dff5924f80545f736db446 (diff) | |
| download | rockbox-a23303695e58d2b451c954819009ef4437b1cdde.zip rockbox-a23303695e58d2b451c954819009ef4437b1cdde.tar.gz rockbox-a23303695e58d2b451c954819009ef4437b1cdde.tar.bz2 rockbox-a23303695e58d2b451c954819009ef4437b1cdde.tar.xz | |
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
Diffstat (limited to 'firmware/mp3data.c')
| -rw-r--r-- | firmware/mp3data.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c index 5b56c6f..5dbf49a 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; |