Commit 08c1c5a1 authored by philipjsg's avatar philipjsg

Turn on the seeking support for ffm streams. Now means that streams are

played from the current time rahter than from the beginning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4194 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c8525718
...@@ -1940,9 +1940,9 @@ static int open_input_stream(HTTPContext *c, const char *info) ...@@ -1940,9 +1940,9 @@ static int open_input_stream(HTTPContext *c, const char *info)
} }
} }
#if 0 #if 1
if (c->fmt_in->iformat->read_seek) { if (c->fmt_in->iformat->read_seek) {
c->fmt_in->iformat->read_seek(c->fmt_in, stream_pos); c->fmt_in->iformat->read_seek(c->fmt_in, 0, stream_pos, 0);
} }
#endif #endif
/* set the start time (needed for maxtime and RTP packet timing) */ /* set the start time (needed for maxtime and RTP packet timing) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment