revid/config/config.go: decrease default ring buffer size and increase MTS ring buffer element size

This commit is contained in:
Saxon 2019-11-11 14:32:24 +10:30
parent d07be12648
commit 6b5911633a
1 changed files with 3 additions and 3 deletions
revid/config

View File

@ -147,12 +147,12 @@ const (
defaultRecPeriod = 1.0
// MTS ring buffer defaults.
defaultMTSRBSize = 1000
defaultMTSRBElementSize = 100000
defaultMTSRBSize = 100
defaultMTSRBElementSize = 300000
defaultMTSRBWriteTimeout = 5
// RTMP ring buffer defaults.
defaultRTMPRBSize = 1000
defaultRTMPRBSize = 100
defaultRTMPRBElementSize = 300000
defaultRTMPRBWriteTimeout = 5
)