revid: removed unused consts

This commit is contained in:
saxon 2019-01-13 17:10:17 +10:30
parent af6c8d875f
commit 9365c4a1de
1 changed files with 12 additions and 22 deletions

View File

@ -50,27 +50,17 @@ import (
// Misc constants // Misc constants
const ( const (
clipDuration = 1 * time.Second clipDuration = 1 * time.Second
mp2tPacketSize = 188 // MPEG-TS packet size ringBufferSize = 10000
mp2tMaxPackets = int(clipDuration * 2016 / time.Second) // # first multiple of 7 and 8 greater than 2000 ringBufferElementSize = 150000
ringBufferSize = 10000 writeTimeout = 10 * time.Millisecond
ringBufferElementSize = 150000 readTimeout = 10 * time.Millisecond
writeTimeout = 10 * time.Millisecond bitrateTime = 1 * time.Minute
readTimeout = 10 * time.Millisecond ffmpegPath = "/usr/local/bin/ffmpeg"
httpTimeout = 5 * time.Second rtmpConnectionTimeout = 10
bitrateTime = 1 * time.Minute sendFailedDelay = 5 * time.Millisecond
mjpegParserInChanLen = 100000 rtmpConnectionMaxTries = 5
ffmpegPath = "/usr/local/bin/ffmpeg" pkg = "revid:"
rtmpConnectionTimout = 10
outputChanSize = 1000
cameraRetryPeriod = 5 * time.Second
sendFailedDelay = 5 * time.Millisecond
maxSendFailedErrorCount = 500
clipSizeThreshold = 11
rtmpConnectionMaxTries = 5
raspividNoOfTries = 3
sendingWaitTime = 5 * time.Millisecond
pkg = "revid:"
) )
// Log Types // Log Types
@ -230,7 +220,7 @@ func (r *Revid) reset(config Config) error {
} }
r.destination[outNo] = s r.destination[outNo] = s
case Rtmp: case Rtmp:
s, err := newRtmpSender(config.RtmpUrl, rtmpConnectionTimout, rtmpConnectionMaxTries, r.config.Logger.Log) s, err := newRtmpSender(config.RtmpUrl, rtmpConnectionTimeout, rtmpConnectionMaxTries, r.config.Logger.Log)
if err != nil { if err != nil {
return err return err
} }