From: Ivan Schreter Date: Sun, 13 Sep 2009 08:57:30 +0000 (+0000) Subject: Use I/O buffer size as initial value for backoff for seeking sync point search. X-Git-Tag: v0.6~3362 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dbe0ad85c1722b67fc681fcf084b8f7afdd15adf;p=platform%2Fupstream%2Flibav.git Use I/O buffer size as initial value for backoff for seeking sync point search. Originally committed as revision 19829 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/seek.c b/libavformat/seek.c index 758767e..93cb679 100644 --- a/libavformat/seek.c +++ b/libavformat/seek.c @@ -342,8 +342,8 @@ int64_t ff_gen_syncpoint_search(AVFormatContext *s, // Find keyframes in all active streams with timestamp/position just before // and just after requested timestamp/position. - step = 1024; - curpos = pos; + step = s->pb->buffer_size; + curpos = FFMAX(pos - step / 2, 0); for (;;) { url_fseek(s->pb, curpos, SEEK_SET); search_hi_lo_keyframes(s,