mirror of
https://github.com/m1k1o/neko.git
synced 2025-07-21 10:37:57 +02:00
update.
This commit is contained in:
parent
8d0468ea62
commit
64b79f4579
2 changed files with 2 additions and 7 deletions
|
@ -23,11 +23,6 @@ type SessionEvent struct {
|
||||||
Session Session
|
Session Session
|
||||||
}
|
}
|
||||||
|
|
||||||
type HostInformation struct {
|
|
||||||
Type string
|
|
||||||
Id string
|
|
||||||
}
|
|
||||||
|
|
||||||
type Session interface {
|
type Session interface {
|
||||||
ID() string
|
ID() string
|
||||||
Name() string
|
Name() string
|
||||||
|
|
|
@ -65,7 +65,7 @@ func (manager *WebRTCManager) Start() {
|
||||||
|
|
||||||
sample, ok := <-manager.capture.Audio().GetSampleChannel()
|
sample, ok := <-manager.capture.Audio().GetSampleChannel()
|
||||||
if !ok {
|
if !ok {
|
||||||
manager.logger.Info().Msg("audio capture channel was closed")
|
manager.logger.Debug().Msg("audio capture channel is closed")
|
||||||
continue // TOOD: Create this goroutine when creating the pipeline.
|
continue // TOOD: Create this goroutine when creating the pipeline.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ func (manager *WebRTCManager) Start() {
|
||||||
|
|
||||||
sample, ok := <-manager.capture.Video().GetSampleChannel()
|
sample, ok := <-manager.capture.Video().GetSampleChannel()
|
||||||
if !ok {
|
if !ok {
|
||||||
manager.logger.Info().Msg("video capture channel was closed")
|
manager.logger.Debug().Msg("video capture channel is closed")
|
||||||
continue // TOOD: Create this goroutine when creating the pipeline.
|
continue // TOOD: Create this goroutine when creating the pipeline.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue