mirror of
https://github.com/jetkvm/kvm.git
synced 2025-09-16 08:38:14 +00:00
12 lines
324 B
Go
12 lines
324 B
Go
package audio
|
|
|
|
// StartAudioStreaming launches the in-process audio stream and delivers Opus frames to the provided callback.
|
|
func StartAudioStreaming(send func([]byte)) error {
|
|
return StartCGOAudioStream(send)
|
|
}
|
|
|
|
// StopAudioStreaming stops the in-process audio stream.
|
|
func StopAudioStreaming() {
|
|
StopCGOAudioStream()
|
|
}
|