HdmiDisplayPixelEncoding Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the types of pixel encoding format.
public enum class HdmiDisplayPixelEncoding
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 262144)]
enum class HdmiDisplayPixelEncoding
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 262144)]
public enum HdmiDisplayPixelEncoding
var value = Windows.Graphics.Display.Core.HdmiDisplayPixelEncoding.rgb444
Public Enum HdmiDisplayPixelEncoding
- Inheritance
-
HdmiDisplayPixelEncoding
- Attributes
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|
Fields
Name | Value | Description |
---|---|---|
Rgb444 | 0 | Video signal is separated into the red, green, blue (RGB) components, with no color sub-sampling. |
Ycc444 | 1 | Video signal is separated into the chroma (Cb and Cr) and luma (Y) components, with no chroma sub-sampling. |
Ycc422 | 2 | Chroma sub-sampling is done at 4:2:2. The two chroma components are sampled at half the sample rate of the luma component. |
Ycc420 | 3 | Chroma sub-sampling is done at 4:2:0. Only one chroma component is sampled on per line. This means that the two chroma components take turns to be sampled, so they are sampled on alternate lines at half the sample rate of the luma component. |