2018-08-17 01:47:36 +02:00
|
|
|
using System;
|
|
|
|
|
2018-03-16 01:06:24 +01:00
|
|
|
namespace Ryujinx.Audio
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
public interface IAalOutput : IDisposable
|
2018-03-16 01:06:24 +01:00
|
|
|
{
|
2018-11-15 03:22:50 +01:00
|
|
|
int OpenTrack(int sampleRate, int channels, ReleaseCallback callback);
|
2018-03-16 04:42:44 +01:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
void CloseTrack(int trackId);
|
2018-03-16 01:06:24 +01:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
bool ContainsBuffer(int trackId, long bufferTag);
|
2018-03-16 01:06:24 +01:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
long[] GetReleasedBuffers(int trackId, int maxCount);
|
2018-03-16 04:42:44 +01:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
void AppendBuffer<T>(int trackId, long bufferTag, T[] buffer) where T : struct;
|
2018-03-16 01:06:24 +01:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
void Start(int trackId);
|
2019-10-11 17:54:29 +02:00
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
void Stop(int trackId);
|
2018-03-16 01:06:24 +01:00
|
|
|
|
2019-10-11 17:54:29 +02:00
|
|
|
float GetVolume();
|
|
|
|
|
|
|
|
void SetVolume(float volume);
|
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
PlaybackState GetState(int trackId);
|
2018-03-16 01:06:24 +01:00
|
|
|
}
|
|
|
|
}
|