]> git.sesse.net Git - vlc/commitdiff
stream_filter/httplive.c: restore seeking
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Tue, 11 Oct 2011 08:21:00 +0000 (10:21 +0200)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Tue, 11 Oct 2011 08:21:00 +0000 (10:21 +0200)
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.

modules/stream_filter/httplive.c

index 4402e6265a506f45444b06cfb48b781a628f0f43..93d00814aefd6158eaf264a412c88e530dc436af 100644 (file)
@@ -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: