diff options
author | Ingo Brückl <ib@wupperonline.de> | 2011-09-15 16:19:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-15 20:16:55 +0200 |
commit | 5d305c9398c043f9ae3bbc6d64a3e1dc468c1e63 (patch) | |
tree | d16cddd8d3d07548a9e35d439cd47ebc3358f600 /libavformat/mp3dec.c | |
parent | b3887bd5fa3aeba6e59969fda75518bf76446fea (diff) | |
download | ffmpeg-5d305c9398c043f9ae3bbc6d64a3e1dc468c1e63.tar.gz |
Correct determination of file size and frames in VBRI headers
The fields "Number of Bytes" and "Number of Frames" are mixed up. "Bytes"
come first, "Frames" behind.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r-- | libavformat/mp3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 73fce71cea..f993f2a775 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -110,8 +110,8 @@ static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base) if(avio_rb16(s->pb) == 1) { /* skip delay and quality */ avio_skip(s->pb, 4); - frames = avio_rb32(s->pb); size = avio_rb32(s->pb); + frames = avio_rb32(s->pb); } } |