Skip to content

Commit 450c805

Browse files
authored
Merge pull request #57 from viruslox/fix-connector-mixer-continuous-1116750371569538517
fix(connector): enable continuous audio mixing for ipc connector
2 parents d2e39a5 + f176a48 commit 450c805

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/modules/connector/module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func (m *Module) Start() error {
5050
log.Println("[Connector] Audio IPC Out is ENABLED")
5151
m.audioOutChan = make(chan []byte, 1024)
5252
// Volume is 100 for IPC out. Similar to SRT but we pipe to UDS.
53-
m.connectorMixer = audio.NewMixer("Connector", 100, false, audio.ConnectorChannel, m.audioOutChan)
53+
m.connectorMixer = audio.NewMixer("Connector", 100, true, audio.ConnectorChannel, m.audioOutChan)
5454
if err := m.connectorMixer.Start(); err != nil {
5555
log.Printf("[Connector] Mixer start error: %v", err)
5656
}

0 commit comments

Comments
 (0)