namespace NvAPIWrapper.Native.Display
{
///
/// Contains possible extended audio codecs
///
public enum InfoFrameAudioExtendedCodec : uint
{
///
/// Use the primary audio codec type, data not available
///
UseCodecType = 0,
///
/// High-Efficiency Advanced Audio Coding
///
HEAAC,
///
/// High-Efficiency Advanced Audio Coding 2
///
HEAACVersion2,
///
/// MPEG Surround
///
MPEGSurround,
///
/// Auto (Unspecified)
///
Auto = 63
}
}