mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-03 08:06:26 +02:00
Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
67
src/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs
Normal file
67
src/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs
Normal file
|
@ -0,0 +1,67 @@
|
|||
using Ryujinx.Audio.Renderer.Dsp.Effect;
|
||||
using Ryujinx.Audio.Renderer.Parameter.Effect;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Ryujinx.Audio.Renderer.Dsp.State
|
||||
{
|
||||
public class DelayState
|
||||
{
|
||||
public DelayLine[] DelayLines { get; }
|
||||
public float[] LowPassZ { get; set; }
|
||||
public float FeedbackGain { get; private set; }
|
||||
public float DelayFeedbackBaseGain { get; private set; }
|
||||
public float DelayFeedbackCrossGain { get; private set; }
|
||||
public float LowPassFeedbackGain { get; private set; }
|
||||
public float LowPassBaseGain { get; private set; }
|
||||
|
||||
private const int FixedPointPrecision = 14;
|
||||
|
||||
public DelayState(ref DelayParameter parameter, ulong workBuffer)
|
||||
{
|
||||
DelayLines = new DelayLine[parameter.ChannelCount];
|
||||
LowPassZ = new float[parameter.ChannelCount];
|
||||
|
||||
uint sampleRate = (uint)FixedPointHelper.ToInt(parameter.SampleRate, FixedPointPrecision) / 1000;
|
||||
|
||||
for (int i = 0; i < DelayLines.Length; i++)
|
||||
{
|
||||
DelayLines[i] = new DelayLine(sampleRate, parameter.DelayTimeMax);
|
||||
DelayLines[i].SetDelay(parameter.DelayTime);
|
||||
}
|
||||
|
||||
UpdateParameter(ref parameter);
|
||||
}
|
||||
|
||||
public void UpdateParameter(ref DelayParameter parameter)
|
||||
{
|
||||
FeedbackGain = FixedPointHelper.ToFloat(parameter.FeedbackGain, FixedPointPrecision) * 0.98f;
|
||||
|
||||
float channelSpread = FixedPointHelper.ToFloat(parameter.ChannelSpread, FixedPointPrecision);
|
||||
|
||||
DelayFeedbackBaseGain = (1.0f - channelSpread) * FeedbackGain;
|
||||
|
||||
if (parameter.ChannelCount == 4 || parameter.ChannelCount == 6)
|
||||
{
|
||||
DelayFeedbackCrossGain = channelSpread * 0.5f * FeedbackGain;
|
||||
}
|
||||
else
|
||||
{
|
||||
DelayFeedbackCrossGain = channelSpread * FeedbackGain;
|
||||
}
|
||||
|
||||
LowPassFeedbackGain = 0.95f * FixedPointHelper.ToFloat(parameter.LowPassAmount, FixedPointPrecision);
|
||||
LowPassBaseGain = 1.0f - LowPassFeedbackGain;
|
||||
}
|
||||
|
||||
public void UpdateLowPassFilter(ref float tempRawRef, uint channelCount)
|
||||
{
|
||||
for (int i = 0; i < channelCount; i++)
|
||||
{
|
||||
float lowPassResult = LowPassFeedbackGain * LowPassZ[i] + Unsafe.Add(ref tempRawRef, i) * LowPassBaseGain;
|
||||
|
||||
LowPassZ[i] = lowPassResult;
|
||||
DelayLines[i].Update(lowPassResult);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue