2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Aud
|
2018-07-08 15:42:10 +00:00
|
|
|
{
|
|
|
|
static class AudErr
|
|
|
|
{
|
|
|
|
public const int DeviceNotFound = 1;
|
2018-07-15 02:57:41 +00:00
|
|
|
public const int UnsupportedRevision = 2;
|
2018-07-08 15:42:10 +00:00
|
|
|
public const int UnsupportedSampleRate = 3;
|
2018-11-17 03:36:49 +00:00
|
|
|
public const int OpusInvalidInput = 6;
|
2018-07-08 15:42:10 +00:00
|
|
|
}
|
|
|
|
}
|