1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-25 17:16:47 -06:00

11 lines
312 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Audio.HardwareOpusDecoderManager
{
interface IDecoder
{
int SampleRate { get; }
int ChannelsCount { get; }
int Decode(byte[] inData, int inDataOffset, int len, short[] outPcm, int outPcmOffset, int frameSize);
void ResetState();
}
}