namespace NvAPIWrapper.Native.Display
{
///
/// Contains possible audio low frequency effects channel playback level
///
public enum InfoFrameAudioLFEPlaybackLevel : uint
{
///
/// Data not available
///
NoData = 0,
///
/// No change to the source audio
///
Plus0Decibel,
///
/// Adds 10 decibel
///
Plus10Decibel,
///
/// Auto (Unspecified)
///
Auto = 7
}
}