mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-12-31 21:13:04 +00:00
26 lines
No EOL
589 B
C#
26 lines
No EOL
589 B
C#
namespace Ryujinx.Audio
|
|
{
|
|
public interface IAalOutput
|
|
{
|
|
int OpenTrack(
|
|
int SampleRate,
|
|
int Channels,
|
|
ReleaseCallback Callback,
|
|
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);
|
|
|
|
void Close();
|
|
}
|
|
} |