Merge branch 'dev' into feat/audio-support

This commit is contained in:
Alex 2025-08-25 02:08:12 +03:00 committed by GitHub
commit e0f7b1d930
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -30,12 +30,12 @@ type Session struct {
AudioInputManager *audio.AudioInputManager AudioInputManager *audio.AudioInputManager
shouldUmountVirtualMedia bool shouldUmountVirtualMedia bool
// Microphone operation throttling // Microphone operation throttling
micCooldown time.Duration micCooldown time.Duration
// Audio frame processing // Audio frame processing
audioFrameChan chan []byte audioFrameChan chan []byte
audioStopChan chan struct{} audioStopChan chan struct{}
audioWg sync.WaitGroup audioWg sync.WaitGroup
rpcQueue chan webrtc.DataChannelMessage rpcQueue chan webrtc.DataChannelMessage
} }
type SessionConfig struct { type SessionConfig struct {