2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Aud
|
2018-07-08 11:42:10 -04:00
|
|
|
{
|
|
|
|
static class AudErr
|
|
|
|
{
|
|
|
|
public const int DeviceNotFound = 1;
|
2018-07-14 22:57:41 -04:00
|
|
|
public const int UnsupportedRevision = 2;
|
2018-07-08 11:42:10 -04:00
|
|
|
public const int UnsupportedSampleRate = 3;
|
2018-11-16 22:36:49 -05:00
|
|
|
public const int OpusInvalidInput = 6;
|
2018-07-08 11:42:10 -04:00
|
|
|
}
|
|
|
|
}
|