From ba0ce88a2d0df0b2049ea25da12bb68e97061c7c Mon Sep 17 00:00:00 2001
From: Fabrice Bellard <fabrice@bellard.org>
Date: Mon, 10 Nov 2003 18:42:51 +0000
Subject: [PATCH] added parsing

Originally committed as revision 2498 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/mp3.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index 35e1d86887c..0da8a400e95 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 */
-- 
GitLab