You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Parameter struct that implements the Zita filter interface
6
+
/// </summary>
7
+
publicstructZitaParameters:IZitaFilter
8
+
{
9
+
/// <summary>
10
+
/// The input delay (ms) before reverb is applied to the incoming signal (default: 60ms)
11
+
/// </summary>
12
+
publicfloatInDelay{get;set;}
13
+
14
+
/// <summary>
15
+
/// The separation between 'high' and 'low' frequencies (default: 200hz)
16
+
/// </summary>
17
+
publicfloatCrossover{get;set;}
18
+
19
+
/// <summary>
20
+
/// The time in seconds it takes for low frequencies to decrease by 60dB (default: 3 seconds)
21
+
/// </summary>
22
+
publicfloatRT60Low{get;set;}
23
+
24
+
/// <summary>
25
+
/// The time in seconds it takes for mid frequencies to decrease by 60dB (default: 2 seconds)
26
+
/// </summary>
27
+
publicfloatRT60Mid{get;set;}
28
+
29
+
/// <summary>
30
+
/// Frequencies (hz) above this one are heard half as long as as the mid-range frequencies - e.g. when their T60 is half of the middle-range's T60 (default: 6000hz)
31
+
/// </summary>
32
+
publicfloatHighFrequencyDamping{get;set;}
33
+
34
+
/// <summary>
35
+
/// The center frequency (hz) of the Regalia Mitra peaking equalizer for the first section (default: 315hz)
36
+
/// </summary>
37
+
publicfloatEQ1Frequency{get;set;}
38
+
39
+
/// <summary>
40
+
/// The peak level (dB) of equalizer 1 (default: 0dB)
41
+
/// </summary>
42
+
publicfloatEQ1Level{get;set;}
43
+
44
+
/// <summary>
45
+
/// The center frequency (hz) of the Regalia Mitra peaking equalizer for the second section (default: 1500hz)
46
+
/// </summary>
47
+
publicfloatEQ2Frequency{get;set;}
48
+
49
+
/// <summary>
50
+
/// The peak level (dB) of equalizer 2 (default: 0dB)
51
+
/// </summary>
52
+
publicfloatEQ2Level{get;set;}
53
+
54
+
/// <summary>
55
+
/// Mixes the wet and dry signals - e.g. 0 is no reverb, 1 is only reverb (default: 1)
56
+
/// </summary>
57
+
publicfloatMix{get;set;}
58
+
59
+
/// <summary>
60
+
/// The factor (dB) to scale the output by (default: -20dB)
0 commit comments