2018-11-17 03:36:49 +00:00
|
|
|
using Concentus.Structs;
|
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Audio.HardwareOpusDecoderManager
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
|
|
|
class IHardwareOpusDecoder : IpcService
|
|
|
|
{
|
|
|
|
private const int FixedSampleRate = 48000;
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private int _sampleRate;
|
|
|
|
private int _channelsCount;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private OpusDecoder _decoder;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public IHardwareOpusDecoder(int sampleRate, int channelsCount)
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_sampleRate = sampleRate;
|
|
|
|
_channelsCount = channelsCount;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
_decoder = new OpusDecoder(FixedSampleRate, channelsCount);
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// DecodeInterleaved(buffer<unknown, 5>) -> (u32, u32, buffer<unknown, 6>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode DecodeInterleaved(ServiceCtx context)
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long inPosition = context.Request.SendBuff[0].Position;
|
|
|
|
long inSize = context.Request.SendBuff[0].Size;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (inSize < 8)
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.OpusInvalidInput;
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long outPosition = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long outSize = context.Request.ReceiveBuff[0].Size;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
byte[] opusData = context.Memory.ReadBytes(inPosition, inSize);
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int processed = ((opusData[0] << 24) |
|
|
|
|
(opusData[1] << 16) |
|
|
|
|
(opusData[2] << 8) |
|
|
|
|
(opusData[3] << 0)) + 8;
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if ((uint)processed > (ulong)inSize)
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.OpusInvalidInput;
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
short[] pcm = new short[outSize / 2];
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int frameSize = pcm.Length / (_channelsCount * 2);
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int samples = _decoder.Decode(opusData, 0, opusData.Length, pcm, 0, frameSize);
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
foreach (short sample in pcm)
|
2018-11-17 03:36:49 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteInt16(outPosition, sample);
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
outPosition += 2;
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(processed);
|
|
|
|
context.ResponseData.Write(samples);
|
2018-11-17 03:36:49 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
|
|
|
|
[Command(4)]
|
|
|
|
// DecodeInterleavedWithPerf(buffer<unknown, 5>) -> (u32, u32, u64, buffer<unknown, 0x46>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode DecodeInterleavedWithPerf(ServiceCtx context)
|
2019-07-12 01:13:43 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
ResultCode result = DecodeInterleaved(context);
|
2019-07-12 01:13:43 +00:00
|
|
|
|
|
|
|
// TODO: Figure out what this value is.
|
|
|
|
// According to switchbrew, it is now used.
|
|
|
|
context.ResponseData.Write(0L);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2018-11-17 03:36:49 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|