Exemplo n.º 1
0
 public void SetResonantParametersAndType(float frequency, float resonance, SuperpoweredFilterType type)
 {
     if (pObject != IntPtr.Zero)
     {
         SuperPoweredFilterWrapper.SetResonantParametersAndType(pObject, frequency, resonance, type);
     }
 }
Exemplo n.º 2
0
 public SuperPoweredFilter(SuperpoweredFilterType filterType, uint samplerate)
 {
     pObject = SuperPoweredFilterWrapper.Create(filterType, samplerate);
     return;
 }
Exemplo n.º 3
0
 public void SetBandlimitedParametersAndType(float frequency, float octaveWidth, SuperpoweredFilterType type)
 {
     if (pObject != IntPtr.Zero)
     {
         SuperPoweredFilterWrapper.SetBandlimitedParametersAndType(pObject, frequency, octaveWidth, type);
     }
 }
Exemplo n.º 4
0
 public void SetShelfParametersAndType(float frequency, float slope, float dbGain, SuperpoweredFilterType type)
 {
     if (pObject != IntPtr.Zero)
     {
         SuperPoweredFilterWrapper.SetShelfParametersAndType(pObject, frequency, slope, dbGain, type);
     }
 }
Exemplo n.º 5
0
 public static extern IntPtr Create(SuperpoweredFilterType filterType, uint samplerate);
Exemplo n.º 6
0
 public static extern void SetBandlimitedParametersAndType(IntPtr pObject, float frequency, float octaveWidth, SuperpoweredFilterType type);
Exemplo n.º 7
0
 public static extern void SetShelfParametersAndType(IntPtr pObject, float frequency, float slope, float dbGain, SuperpoweredFilterType type);
Exemplo n.º 8
0
 public static extern void SetResonantParametersAndType(IntPtr pObject, float frequency, float resonance, SuperpoweredFilterType type);