mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-31 11:41:59 +00:00
remove stats from rtmp and rtsp source
This commit is contained in:
parent
60823aa2b6
commit
ca499a27c3
@ -589,7 +589,6 @@ func (pa *path) staticSourceCreate() {
|
||||
pa.readBufferCount,
|
||||
pa.readBufferSize,
|
||||
&pa.sourceStaticWg,
|
||||
pa.stats,
|
||||
pa)
|
||||
} else if strings.HasPrefix(pa.conf.Source, "rtmp://") {
|
||||
pa.source = newRTMPSource(
|
||||
@ -598,7 +597,6 @@ func (pa *path) staticSourceCreate() {
|
||||
pa.readTimeout,
|
||||
pa.writeTimeout,
|
||||
&pa.sourceStaticWg,
|
||||
pa.stats,
|
||||
pa)
|
||||
}
|
||||
}
|
||||
|
@ -32,7 +32,6 @@ type rtmpSource struct {
|
||||
readTimeout time.Duration
|
||||
writeTimeout time.Duration
|
||||
wg *sync.WaitGroup
|
||||
stats *stats
|
||||
parent rtmpSourceParent
|
||||
|
||||
ctx context.Context
|
||||
@ -45,7 +44,6 @@ func newRTMPSource(
|
||||
readTimeout time.Duration,
|
||||
writeTimeout time.Duration,
|
||||
wg *sync.WaitGroup,
|
||||
stats *stats,
|
||||
parent rtmpSourceParent) *rtmpSource {
|
||||
ctx, ctxCancel := context.WithCancel(parentCtx)
|
||||
|
||||
@ -54,7 +52,6 @@ func newRTMPSource(
|
||||
readTimeout: readTimeout,
|
||||
writeTimeout: writeTimeout,
|
||||
wg: wg,
|
||||
stats: stats,
|
||||
parent: parent,
|
||||
ctx: ctx,
|
||||
ctxCancel: ctxCancel,
|
||||
|
@ -36,7 +36,6 @@ type rtspSource struct {
|
||||
readBufferCount int
|
||||
readBufferSize int
|
||||
wg *sync.WaitGroup
|
||||
stats *stats
|
||||
parent rtspSourceParent
|
||||
|
||||
ctx context.Context
|
||||
@ -54,7 +53,6 @@ func newRTSPSource(
|
||||
readBufferCount int,
|
||||
readBufferSize int,
|
||||
wg *sync.WaitGroup,
|
||||
stats *stats,
|
||||
parent rtspSourceParent) *rtspSource {
|
||||
ctx, ctxCancel := context.WithCancel(parentCtx)
|
||||
|
||||
@ -68,7 +66,6 @@ func newRTSPSource(
|
||||
readBufferCount: readBufferCount,
|
||||
readBufferSize: readBufferSize,
|
||||
wg: wg,
|
||||
stats: stats,
|
||||
parent: parent,
|
||||
ctx: ctx,
|
||||
ctxCancel: ctxCancel,
|
||||
|
Loading…
Reference in New Issue
Block a user