2018-08-16 23:47:36 +00:00
|
|
|
using System;
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
namespace Ryujinx.Audio
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
public interface IAalOutput : IDisposable
|
2018-03-16 00:06:24 +00:00
|
|
|
{
|
2020-08-18 19:03:55 +00:00
|
|
|
bool SupportsChannelCount(int channels);
|
|
|
|
|
|
|
|
private int SelectHardwareChannelCount(int targetChannelCount)
|
|
|
|
{
|
|
|
|
if (SupportsChannelCount(targetChannelCount))
|
|
|
|
{
|
|
|
|
return targetChannelCount;
|
|
|
|
}
|
|
|
|
|
2020-11-27 19:55:00 +00:00
|
|
|
return targetChannelCount switch
|
2020-08-18 19:03:55 +00:00
|
|
|
{
|
2020-11-27 19:55:00 +00:00
|
|
|
6 => SelectHardwareChannelCount(2),
|
|
|
|
2 => SelectHardwareChannelCount(1),
|
|
|
|
1 => throw new ArgumentException("No valid channel configuration found!"),
|
|
|
|
_ => throw new ArgumentException($"Invalid targetChannelCount {targetChannelCount}"),
|
|
|
|
};
|
2020-08-18 19:03:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int OpenTrack(int sampleRate, int channels, ReleaseCallback callback)
|
|
|
|
{
|
|
|
|
return OpenHardwareTrack(sampleRate, SelectHardwareChannelCount(channels), channels, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
int OpenHardwareTrack(int sampleRate, int hardwareChannels, int virtualChannels, ReleaseCallback callback);
|
2018-03-16 03:42:44 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
void CloseTrack(int trackId);
|
2018-03-16 00:06:24 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
bool ContainsBuffer(int trackId, long bufferTag);
|
2018-03-16 00:06:24 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
long[] GetReleasedBuffers(int trackId, int maxCount);
|
2018-03-16 03:42:44 +00:00
|
|
|
|
2020-08-18 19:03:55 +00:00
|
|
|
void AppendBuffer<T>(int trackId, long bufferTag, T[] buffer) where T : struct;
|
2018-03-16 00:06:24 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
void Start(int trackId);
|
2019-10-11 15:54:29 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
void Stop(int trackId);
|
2018-03-16 00:06:24 +00:00
|
|
|
|
2020-11-20 20:59:01 +00:00
|
|
|
uint GetBufferCount(int trackId);
|
2019-10-11 15:54:29 +00:00
|
|
|
|
2020-11-20 20:59:01 +00:00
|
|
|
ulong GetPlayedSampleCount(int trackId);
|
|
|
|
|
|
|
|
bool FlushBuffers(int trackId);
|
|
|
|
|
|
|
|
float GetVolume(int trackId);
|
|
|
|
|
|
|
|
void SetVolume(int trackId, float volume);
|
2019-10-11 15:54:29 +00:00
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
PlaybackState GetState(int trackId);
|
2018-03-16 00:06:24 +00:00
|
|
|
}
|
|
|
|
}
|