OSDN Git Service

Correct determination of file size and frames in VBRI headers
authorIngo Brückl <ib@wupperonline.de>
Thu, 15 Sep 2011 14:19:05 +0000 (16:19 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 15 Sep 2011 18:16:55 +0000 (20:16 +0200)
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>
libavformat/mp3dec.c

index 73fce71..f993f2a 100644 (file)
@@ -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);
         }
     }