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
No EOL
286 B
C#
10 lines
No EOL
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;
|
|
}
|
|
} |