mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
14 lines
245 B
C#
14 lines
245 B
C#
namespace AudioCore.Interfaces;
|
|
|
|
public interface IAudioOutputDevice
|
|
{
|
|
int SampleRate { get; }
|
|
int Channels { get; }
|
|
|
|
void Start();
|
|
void Stop();
|
|
|
|
// Push interleaved float32 PCM
|
|
void Write(ReadOnlySpan<float> samples);
|
|
}
|