mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-15 19:24:55 +00:00
hls: speed up serving of files
This commit is contained in:
parent
7ba507f205
commit
5eb4741278
@ -187,22 +187,8 @@ func (s *hlsServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
select {
|
||||
case s.request <- hreq:
|
||||
res := <-cres
|
||||
|
||||
if res != nil {
|
||||
buf := make([]byte, 4096)
|
||||
for {
|
||||
n, err := res.Read(buf)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
_, err = w.Write(buf[:n])
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
w.(http.Flusher).Flush()
|
||||
}
|
||||
io.Copy(w, res)
|
||||
}
|
||||
|
||||
case <-s.ctx.Done():
|
||||
|
Loading…
Reference in New Issue
Block a user