From f97931c1223d27b68300aeca0f8ab699da2a5fa7 Mon Sep 17 00:00:00 2001 From: Thorsten Jordan Date: Thu, 18 Oct 2007 15:02:34 +0000 Subject: set start_time to 0 to enable seeking in mp3-files patch by Thorsten Jordan, tjordan macrosystem de Originally committed as revision 10780 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mp3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mp3.c b/libavformat/mp3.c index bc12e8e2a5..6173be225e 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -438,6 +438,7 @@ static int mp3_read_header(AVFormatContext *s, st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_id = CODEC_ID_MP3; st->need_parsing = AVSTREAM_PARSE_FULL; + st->start_time = 0; /* try to get the TAG */ if (!url_is_streamed(&s->pb)) { -- cgit v1.2.3