Enum NativeAudio.LoadOptions.ResamplingQuality
Determines what resampling quality for Secret Rabbit Code to use.
Namespace: E7.Native
Assembly: E7.NativeAudio.dll
Syntax
public enum ResamplingQuality
Fields
Name | Description |
---|---|
LINEAR | The missing value will be linearly interpolated. Faster than sinc resampling. |
SINC_FASTEST | Use a coefficients from sinc wave for reconstruction. Takes a bit of time to complete. |
ZERO_ORDER_HOLD | Just use the previous value for any missing data. It is the fastest resampling method but might sounds poor. |