This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix id3v2.2 frame size parsing.
Fixes issue1202. Originally committed as revision 19276 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer
16 years ago
parent
47f42aec38
commit
1cd4422163
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/id3v2.c
+ 1
- 1
libavformat/id3v2.c
View File
@@ -159,7 +159,7 @@ void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
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;
Write
Preview
Loading…
Cancel
Save