diff options
author | Mary <me@thog.eu> | 2021-07-18 13:05:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 13:05:11 +0200 |
commit | b8ad676fb8cbe0a43617df41daaf284ab4421c75 (patch) | |
tree | 743775369a175af0859f3e27e14e4ed4ce8b6877 /Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs | |
parent | 97a21332071aceeef6f5035178a3523177570448 (diff) |
Amadeus: DSP code generation improvements (#2460)
This improve RyuJIT codegen drastically on the DSP side.
This may reduce CPU usage of the DSP thread quite a lot.
Diffstat (limited to 'Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs')
-rw-r--r-- | Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs index f34e50e4..751b41e7 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs @@ -17,6 +17,7 @@ using Ryujinx.Audio.Renderer.Common; using System; +using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command { @@ -55,6 +56,7 @@ namespace Ryujinx.Audio.Renderer.Dsp.Command LastSampleIndex = lastSampleIndex; } + [MethodImpl(MethodImplOptions.AggressiveInlining)] private float ProcessMixRamp(Span<float> outputBuffer, ReadOnlySpan<float> inputBuffer, int sampleCount) { float ramp = (Volume1 - Volume0) / sampleCount; |