diff --git a/modules/access/http/access.c b/modules/access/http/access.c index 97f0e7f1f12b52639d16c48dc6d7f6b62feb86b8..a3805d0d426a473e73c8961480845364507652a0 100644 --- a/modules/access/http/access.c +++ b/modules/access/http/access.c @@ -123,13 +123,6 @@ static block_t *LiveRead(stream_t *access, bool *restrict eof) return b; } -static int NoSeek(stream_t *access, uint64_t pos) -{ - (void) access; - (void) pos; - return VLC_EGENERIC; -} - static int LiveControl(stream_t *access, int query, va_list args) { access_sys_t *sys = access->p_sys; @@ -253,7 +246,7 @@ static int Open(vlc_object_t *obj) if (live) { access->pf_block = LiveRead; - access->pf_seek = NoSeek; + access->pf_seek = NULL; access->pf_control = LiveControl; } else