namespace NvAPIWrapper.Native.Display
{
///
/// Contains possible audio sample size (bit depth)
///
public enum InfoFrameAudioSampleSize : uint
{
///
/// Data is available in the header of source data
///
InHeader = 0,
///
/// 16bit audio sample size
///
B16,
///
/// 20bit audio sample size
///
B20,
///
/// 24bit audio sample size
///
B24,
///
/// Auto (Unspecified)
///
Auto = 7
}
}