[FFmpeg-cvslog] r19276 - trunk/libavformat/id3v2.c

michael subversion
Thu Jun 25 21:44:44 CEST 2009


Author: michael
Date: Thu Jun 25 21:44:44 2009
New Revision: 19276

Log:
Fix id3v2.2 frame size parsing.
Fixes issue1202.

Modified:
   trunk/libavformat/id3v2.c

Modified: trunk/libavformat/id3v2.c
==============================================================================
--- trunk/libavformat/id3v2.c	Thu Jun 25 21:26:39 2009	(r19275)
+++ trunk/libavformat/id3v2.c	Thu Jun 25 21:44:44 2009	(r19276)
@@ -159,7 +159,7 @@ void ff_id3v2_parse(AVFormatContext *s, 
             get_be16(s->pb); /* flags */
         } else {
             tag  = get_be24(s->pb);
-            tlen = get_size(s->pb, 3);
+            tlen = get_be24(s->pb);
         }
         len -= taghdrlen + tlen;
 



More information about the ffmpeg-cvslog mailing list