8 lines
271 B
Go
8 lines
271 B
Go
//go:build !android
|
|
|
|
package teamspeak
|
|
|
|
// newPlatformVoiceDecoderFactory returns nil on platforms without the Android
|
|
// libopus bridge. ReceiveAudio's unit tests install their own fake factories.
|
|
func newPlatformVoiceDecoderFactory() voiceDecoderFactory { return nil }
|