diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2007-07-08 03:16:59 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2007-07-08 03:16:59 +0000 |
commit | c21f308e77ee1ab9dd280f40f2008122d1fc53d7 (patch) | |
tree | 0e342208596205cef7da848dc394c931a1f0e2fd /libavformat/mp3.c | |
parent | b3633dee5820cdaa45bf46ebe955b1af59f878a2 (diff) | |
download | ffmpeg-c21f308e77ee1ab9dd280f40f2008122d1fc53d7.tar.gz |
* Getting rid of the use of GCC language extensions
Originally committed as revision 9531 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mp3.c')
-rw-r--r-- | libavformat/mp3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 04e8bcf420..8d63f925ff 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -234,7 +234,8 @@ static void id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t fl taghdrlen = 6; break; - case 3 ... 4: + case 3: + case 4: isv34 = 1; taghdrlen = 10; break; |