diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-11-10 18:42:51 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-11-10 18:42:51 +0000 |
commit | ba0ce88a2d0df0b2049ea25da12bb68e97061c7c (patch) | |
tree | bd0cfca0d60477505ab933a4ab7837185427b35e /libavformat | |
parent | 4986a429298cf17ac64a832b1aa9e6889e3aa06a (diff) | |
download | ffmpeg-streaming-ba0ce88a2d0df0b2049ea25da12bb68e97061c7c.zip ffmpeg-streaming-ba0ce88a2d0df0b2049ea25da12bb68e97061c7c.tar.gz |
added parsing
Originally committed as revision 2498 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-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 */ |