2020-08-18 03:49:37 +02:00
|
|
|
using Ryujinx.Audio.Renderer.Common;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Audio.Renderer.Dsp.Command
|
|
|
|
{
|
|
|
|
public class DepopPrepareCommand : ICommand
|
|
|
|
{
|
|
|
|
public bool Enabled { get; set; }
|
|
|
|
|
|
|
|
public int NodeId { get; }
|
|
|
|
|
|
|
|
public CommandType CommandType => CommandType.DepopPrepare;
|
|
|
|
|
|
|
|
public ulong EstimatedProcessingTime { get; set; }
|
|
|
|
|
|
|
|
public uint MixBufferCount { get; }
|
|
|
|
|
|
|
|
public ushort[] OutputBufferIndices { get; }
|
|
|
|
|
|
|
|
public Memory<VoiceUpdateState> State { get; }
|
|
|
|
public Memory<float> DepopBuffer { get; }
|
|
|
|
|
|
|
|
public DepopPrepareCommand(Memory<VoiceUpdateState> state, Memory<float> depopBuffer, uint mixBufferCount, uint bufferOffset, int nodeId, bool enabled)
|
|
|
|
{
|
|
|
|
Enabled = enabled;
|
|
|
|
NodeId = nodeId;
|
|
|
|
MixBufferCount = mixBufferCount;
|
|
|
|
|
2021-02-26 01:11:56 +01:00
|
|
|
OutputBufferIndices = new ushort[Constants.MixBufferCountMax];
|
2020-08-18 03:49:37 +02:00
|
|
|
|
2021-02-26 01:11:56 +01:00
|
|
|
for (int i = 0; i < Constants.MixBufferCountMax; i++)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
OutputBufferIndices[i] = (ushort)(bufferOffset + i);
|
|
|
|
}
|
|
|
|
|
|
|
|
State = state;
|
|
|
|
DepopBuffer = depopBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Process(CommandList context)
|
|
|
|
{
|
|
|
|
ref VoiceUpdateState state = ref State.Span[0];
|
|
|
|
|
2021-07-18 13:05:11 +02:00
|
|
|
Span<float> depopBuffer = DepopBuffer.Span;
|
|
|
|
|
2020-08-18 03:49:37 +02:00
|
|
|
for (int i = 0; i < MixBufferCount; i++)
|
|
|
|
{
|
|
|
|
if (state.LastSamples[i] != 0)
|
|
|
|
{
|
2021-07-18 13:05:11 +02:00
|
|
|
depopBuffer[OutputBufferIndices[i]] += state.LastSamples[i];
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
state.LastSamples[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|