summaryrefslogtreecommitdiff
path: root/libavformat/mp3.c
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2007-07-08 03:16:59 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2007-07-08 03:16:59 +0000
commitc21f308e77ee1ab9dd280f40f2008122d1fc53d7 (patch)
tree0e342208596205cef7da848dc394c931a1f0e2fd /libavformat/mp3.c
parentb3633dee5820cdaa45bf46ebe955b1af59f878a2 (diff)
* 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.c3
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;