diff options
-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 35e1d86..0da8a40 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -253,7 +253,8 @@ static int mp3_read_header(AVFormatContext *s, st->codec.codec_type = CODEC_TYPE_AUDIO; st->codec.codec_id = CODEC_ID_MP3; - + st->need_parsing = 1; + /* try to get the TAG */ if (!url_is_streamed(&s->pb)) { /* XXX: change that */ |