2021-05-25 19:01:09 +02:00
|
|
|
using Ryujinx.Common.Memory;
|
2020-08-18 03:49:37 +02:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2021-05-25 19:01:09 +02:00
|
|
|
namespace Ryujinx.Audio.Renderer.Parameter.Effect
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
/// Effect result state for <seealso cref="Common.EffectType.Limiter"/>.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
2021-05-25 19:01:09 +02:00
|
|
|
public struct LimiterStatistics
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
/// The max input sample value recorded by the limiter.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
public Array6<float> InputMax;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
/// <summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
/// Compression gain min value.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
public Array6<float> CompressionGainMin;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
/// <summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
/// Reset the statistics.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-05-25 19:01:09 +02:00
|
|
|
public void Reset()
|
|
|
|
{
|
2022-08-11 23:07:37 +02:00
|
|
|
InputMax.AsSpan().Fill(0.0f);
|
|
|
|
CompressionGainMin.AsSpan().Fill(1.0f);
|
2021-05-25 19:01:09 +02:00
|
|
|
}
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|