From de9fe002f82d6b55a2400b534bbdc9cf463ac100 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 10 Oct 2006 13:00:50 +0000 Subject: [PATCH] rewind completely if sample time is negative Originally committed as revision 6629 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mxf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mxf.c b/libavformat/mxf.c index 8a5d5a65ea..5277028f17 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -1033,8 +1033,10 @@ static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti int64_t seconds; int i; - if (!s->bit_rate || sample_time < 0) + if (!s->bit_rate) return -1; + if (sample_time < 0) + sample_time = 0; seconds = av_rescale(sample_time, st->time_base.num, st->time_base.den); url_fseek(&s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET); /* sync on KLV essence element */