these constants document the allowed range and the approximate expected results of the quality parameter to the resampler
This commit is contained in:
parent
271137797a
commit
a94be3c03c
|
@ -21,6 +21,12 @@ namespace BizHawk.Emulation.Common
|
|||
|
||||
private static class LibSpeexDSP
|
||||
{
|
||||
public const int QUALITY_MAX = 10;
|
||||
public const int QUALITY_MIN = 0;
|
||||
public const int QUALITY_DEFAULT = 4;
|
||||
public const int QUALITY_VOIP = 3;
|
||||
public const int QUALITY_DESKTOP = 5;
|
||||
|
||||
public enum RESAMPLER_ERR
|
||||
{
|
||||
SUCCESS = 0,
|
||||
|
|
Loading…
Reference in New Issue