Remove some unused constants in SpeexResampler, and some meaningles whitespace cleanups
This commit is contained in:
parent
1f014daaa0
commit
08be637131
|
@ -7,7 +7,10 @@
|
|||
/// <seealso cref="IMemoryDomains" />
|
||||
public abstract class MemoryDomain
|
||||
{
|
||||
public enum Endian { Big, Little, Unknown }
|
||||
public enum Endian
|
||||
{
|
||||
Big, Little, Unknown
|
||||
}
|
||||
|
||||
public string Name { get; protected set; }
|
||||
|
||||
|
|
|
@ -68,5 +68,4 @@ namespace BizHawk.Emulation.Common
|
|||
/// <seealso cref="BizHawk.Emulation.Common.CoreComm" />
|
||||
CoreComm CoreComm { get; }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -88,5 +88,8 @@ namespace BizHawk.Emulation.Common
|
|||
uint? AddressMask { get; }
|
||||
}
|
||||
|
||||
public enum MemoryCallbackType { Read, Write, Execute }
|
||||
public enum MemoryCallbackType
|
||||
{
|
||||
Read, Write, Execute
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
public enum SyncSoundMode { Sync, Async }
|
||||
public enum SyncSoundMode
|
||||
{
|
||||
Sync, Async
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This service provides the ability to output sound from the client,
|
||||
|
|
|
@ -21,12 +21,6 @@ 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