🎉 live server seems to be working now
This commit is contained in:
12
third_party/sendspin-go/pkg/audio/output/output.go
vendored
Normal file
12
third_party/sendspin-go/pkg/audio/output/output.go
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// ABOUTME: Audio output interface definition
|
||||
// ABOUTME: Common interface for audio playback backends
|
||||
package output
|
||||
|
||||
// Output represents an audio output device
|
||||
type Output interface {
|
||||
Open(sampleRate, channels, bitDepth int) error
|
||||
Write(samples []int32) error
|
||||
Close() error
|
||||
SetVolume(volume int)
|
||||
SetMuted(muted bool)
|
||||
}
|
||||
Reference in New Issue
Block a user