namespace NvAPIWrapper.Native.Display
{
///
/// Contains possible values for AVI aspect ratio portions
///
public enum InfoFrameVideoAspectRatioActivePortion : uint
{
///
/// Disabled or not available
///
Disabled = 0,
///
/// Letter box 16x9
///
LetterboxGreaterThan16X9 = 4,
///
/// Equal to the source frame size
///
EqualCodedFrame = 8,
///
/// Centered 4x3 ratio
///
Center4X3 = 9,
///
/// Centered 16x9 ratio
///
Center16X9 = 10,
///
/// Centered 14x9 ratio
///
Center14X9 = 11,
///
/// Bordered 4x3 on 14x9
///
Bordered4X3On14X9 = 13,
///
/// Bordered 16x9 on 14x9
///
Bordered16X9On14X9 = 14,
///
/// Bordered 16x9 on 4x3
///
Bordered16X9On4X3 = 15,
///
/// Auto (Unspecified)
///
Auto = 31
}
}