SDRSharper/SDRSharper.Radio/PortAudioSharp/PaSampleFormat.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

15 lines
228 B
C#

namespace PortAudioSharp
{
internal enum PaSampleFormat : uint
{
PaFloat32 = 1u,
PaInt32,
PaInt24 = 4u,
PaInt16 = 8u,
PaInt8 = 0x10,
PaUInt8 = 0x20,
PaCustomFormat = 0x10000,
PaNonInterleaved = 0x80000000
}
}