mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
28 lines
641 B
C#
28 lines
641 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Contains possible audio low frequency effects channel playback level
|
|
/// </summary>
|
|
public enum InfoFrameAudioLFEPlaybackLevel : uint
|
|
{
|
|
/// <summary>
|
|
/// Data not available
|
|
/// </summary>
|
|
NoData = 0,
|
|
|
|
/// <summary>
|
|
/// No change to the source audio
|
|
/// </summary>
|
|
Plus0Decibel,
|
|
|
|
/// <summary>
|
|
/// Adds 10 decibel
|
|
/// </summary>
|
|
Plus10Decibel,
|
|
|
|
/// <summary>
|
|
/// Auto (Unspecified)
|
|
/// </summary>
|
|
Auto = 7
|
|
}
|
|
} |