diff options
Diffstat (limited to 'Ryujinx.Audio/Renderer/Common')
| -rw-r--r-- | Ryujinx.Audio/Renderer/Common/EffectType.cs | 7 | ||||
| -rw-r--r-- | Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Ryujinx.Audio/Renderer/Common/EffectType.cs b/Ryujinx.Audio/Renderer/Common/EffectType.cs index 2c50b9eb..7128db4c 100644 --- a/Ryujinx.Audio/Renderer/Common/EffectType.cs +++ b/Ryujinx.Audio/Renderer/Common/EffectType.cs @@ -48,6 +48,11 @@ namespace Ryujinx.Audio.Renderer.Common /// <summary> /// Effect to capture mixes (via auxiliary buffers). /// </summary> - CaptureBuffer + CaptureBuffer, + + /// <summary> + /// Effect applying a compressor filter (DRC). + /// </summary> + Compressor, } }
\ No newline at end of file diff --git a/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs b/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs index 8467ed8d..805d5518 100644 --- a/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs +++ b/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs @@ -14,6 +14,7 @@ namespace Ryujinx.Audio.Renderer.Common Reverb3d, PcmFloat, Limiter, - CaptureBuffer + CaptureBuffer, + Compressor } }
\ No newline at end of file |
