these constants document the allowed range and the approximate expected results of the quality parameter to the resampler

This commit is contained in:
nattthebear 2017-05-02 18:04:17 -04:00
parent 271137797a
commit a94be3c03c
1 changed files with 6 additions and 0 deletions

View File

@ -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,