namespace NvAPIWrapper.Native.Display
{
///
/// Contains possible audio channel level shift values
///
public enum InfoFrameAudioLevelShift : uint
{
///
/// No change to the source audio
///
Shift0Decibel = 0,
///
/// Shifts 1 decibel
///
Shift1Decibel,
///
/// Shifts 2 decibel
///
Shift2Decibel,
///
/// Shifts 3 decibel
///
Shift3Decibel,
///
/// Shifts 4 decibel
///
Shift4Decibel,
///
/// Shifts 5 decibel
///
Shift5Decibel,
///
/// Shifts 6 decibel
///
Shift6Decibel,
///
/// Shifts 7 decibel
///
Shift7Decibel,
///
/// Shifts 8 decibel
///
Shift8Decibel,
///
/// Shifts 9 decibel
///
Shift9Decibel,
///
/// Shifts 10 decibel
///
Shift10Decibel,
///
/// Shifts 11 decibel
///
Shift11Decibel,
///
/// Shifts 12 decibel
///
Shift12Decibel,
///
/// Shifts 13 decibel
///
Shift13Decibel,
///
/// Shifts 14 decibel
///
Shift14Decibel,
///
/// Shifts 15 decibel
///
Shift15Decibel,
///
/// Auto (Unspecified)
///
Auto = 31
}
}