mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:38:33 +00:00
b833183ef6
* Started to implement the hwopus service * Write outputs on decode method, some basic error handling * Fix buffer size read from header and check * Fix order of values
10 lines
286 B
C#
10 lines
286 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud
|
|
{
|
|
static class AudErr
|
|
{
|
|
public const int DeviceNotFound = 1;
|
|
public const int UnsupportedRevision = 2;
|
|
public const int UnsupportedSampleRate = 3;
|
|
public const int OpusInvalidInput = 6;
|
|
}
|
|
} |