mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 14:33:17 +01:00
20 lines
467 B
C#
20 lines
467 B
C#
namespace Ryujinx.Audio
|
|
{
|
|
public interface IAalOutput
|
|
{
|
|
int OpenTrack(int SampleRate, int Channels, out AudioFormat Format);
|
|
|
|
void CloseTrack(int Track);
|
|
|
|
bool ContainsBuffer(int Track, long Tag);
|
|
|
|
long[] GetReleasedBuffers(int Track, int MaxCount);
|
|
|
|
void AppendBuffer(int Track, long Tag, byte[] Buffer);
|
|
|
|
void Start(int Track);
|
|
void Stop(int Track);
|
|
|
|
PlaybackState GetState(int Track);
|
|
}
|
|
} |