mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 21:46:40 +00:00
XML docs
This commit is contained in:
parent
e7ea8ad3c4
commit
31edc0b5ce
1 changed files with 11 additions and 0 deletions
|
@ -9,8 +9,19 @@ namespace Ryujinx.Audio.Renderer.Parameter.Effect
|
|||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public struct CompressorStatistics
|
||||
{
|
||||
/// <summary>
|
||||
/// Maximum input mean value since last reset.
|
||||
/// </summary>
|
||||
public float MaximumMean;
|
||||
|
||||
/// <summary>
|
||||
/// Minimum output gain since last reset.
|
||||
/// </summary>
|
||||
public float MinimumGain;
|
||||
|
||||
/// <summary>
|
||||
/// Last processed input sample, per channel.
|
||||
/// </summary>
|
||||
public Array6<float> LastSamples;
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue