mirror of https://bitbucket.org/ausocean/av.git
revid/senders.go: reduce max buff len
This commit is contained in:
parent
40133eaad9
commit
cc467243ea
|
@ -54,7 +54,7 @@ type Log func(level int8, message string, params ...interface{})
|
||||||
const (
|
const (
|
||||||
rtmpRBReadTimeout = 1 * time.Second
|
rtmpRBReadTimeout = 1 * time.Second
|
||||||
mtsRBReadTimeout = 1 * time.Second
|
mtsRBReadTimeout = 1 * time.Second
|
||||||
maxBuffLen = 100000000
|
maxBuffLen = 50000000
|
||||||
)
|
)
|
||||||
|
|
||||||
// httpSender provides an implemntation of io.Writer to perform sends to a http
|
// httpSender provides an implemntation of io.Writer to perform sends to a http
|
||||||
|
|
Loading…
Reference in New Issue