Commit 10c42e7f authored by Jean-Paul Saman's avatar Jean-Paul Saman

stream_filter/httplive.c: restore seeking

HTTP Live Streaming client does not support fast seeking, since that
would mean getting all data from the server. It would slowdown playback
of the stream until the end of the movie has been reached.
parent 4a234dbe
......@@ -2117,7 +2117,6 @@ static int Control(stream_t *s, int i_query, va_list args)
switch (i_query)
{
case STREAM_CAN_SEEK:
case STREAM_CAN_FASTSEEK:
*(va_arg (args, bool *)) = hls_MaySeek(s);
break;
case STREAM_GET_POSITION:
......
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