ホーム › Devices.Display › OUTPUT_COLOR_ENCODING
OUTPUT_COLOR_ENCODING
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| OUTPUT_COLOR_ENCODING_RGB | 0 | 0x0 |
| OUTPUT_COLOR_ENCODING_YCBCR444 | 1 | 0x1 |
| OUTPUT_COLOR_ENCODING_YCBCR422 | 2 | 0x2 |
| OUTPUT_COLOR_ENCODING_YCBCR420 | 3 | 0x3 |
| OUTPUT_COLOR_ENCODING_INTENSITY | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum OUTPUT_COLOR_ENCODING : int {
OUTPUT_COLOR_ENCODING_RGB = 0,
OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
OUTPUT_COLOR_ENCODING_INTENSITY = 4
} OUTPUT_COLOR_ENCODING;public enum OUTPUT_COLOR_ENCODING : int
{
OUTPUT_COLOR_ENCODING_RGB = 0,
OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
OUTPUT_COLOR_ENCODING_INTENSITY = 4,
}Public Enum OUTPUT_COLOR_ENCODING As Integer
OUTPUT_COLOR_ENCODING_RGB = 0
OUTPUT_COLOR_ENCODING_YCBCR444 = 1
OUTPUT_COLOR_ENCODING_YCBCR422 = 2
OUTPUT_COLOR_ENCODING_YCBCR420 = 3
OUTPUT_COLOR_ENCODING_INTENSITY = 4
End Enumimport enum
class OUTPUT_COLOR_ENCODING(enum.IntEnum):
OUTPUT_COLOR_ENCODING_RGB = 0
OUTPUT_COLOR_ENCODING_YCBCR444 = 1
OUTPUT_COLOR_ENCODING_YCBCR422 = 2
OUTPUT_COLOR_ENCODING_YCBCR420 = 3
OUTPUT_COLOR_ENCODING_INTENSITY = 4// OUTPUT_COLOR_ENCODING
pub const OUTPUT_COLOR_ENCODING_RGB: i32 = 0;
pub const OUTPUT_COLOR_ENCODING_YCBCR444: i32 = 1;
pub const OUTPUT_COLOR_ENCODING_YCBCR422: i32 = 2;
pub const OUTPUT_COLOR_ENCODING_YCBCR420: i32 = 3;
pub const OUTPUT_COLOR_ENCODING_INTENSITY: i32 = 4;// OUTPUT_COLOR_ENCODING
const (
OUTPUT_COLOR_ENCODING_RGB int32 = 0
OUTPUT_COLOR_ENCODING_YCBCR444 int32 = 1
OUTPUT_COLOR_ENCODING_YCBCR422 int32 = 2
OUTPUT_COLOR_ENCODING_YCBCR420 int32 = 3
OUTPUT_COLOR_ENCODING_INTENSITY int32 = 4
)const
OUTPUT_COLOR_ENCODING_RGB = 0;
OUTPUT_COLOR_ENCODING_YCBCR444 = 1;
OUTPUT_COLOR_ENCODING_YCBCR422 = 2;
OUTPUT_COLOR_ENCODING_YCBCR420 = 3;
OUTPUT_COLOR_ENCODING_INTENSITY = 4;// OUTPUT_COLOR_ENCODING
pub const OUTPUT_COLOR_ENCODING_RGB: i32 = 0;
pub const OUTPUT_COLOR_ENCODING_YCBCR444: i32 = 1;
pub const OUTPUT_COLOR_ENCODING_YCBCR422: i32 = 2;
pub const OUTPUT_COLOR_ENCODING_YCBCR420: i32 = 3;
pub const OUTPUT_COLOR_ENCODING_INTENSITY: i32 = 4;const
OUTPUT_COLOR_ENCODING_RGB* = 0
OUTPUT_COLOR_ENCODING_YCBCR444* = 1
OUTPUT_COLOR_ENCODING_YCBCR422* = 2
OUTPUT_COLOR_ENCODING_YCBCR420* = 3
OUTPUT_COLOR_ENCODING_INTENSITY* = 4enum OUTPUT_COLOR_ENCODING : int {
OUTPUT_COLOR_ENCODING_RGB = 0,
OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
OUTPUT_COLOR_ENCODING_INTENSITY = 4,
}#define global OUTPUT_COLOR_ENCODING_RGB 0x0
#define global OUTPUT_COLOR_ENCODING_YCBCR444 0x1
#define global OUTPUT_COLOR_ENCODING_YCBCR422 0x2
#define global OUTPUT_COLOR_ENCODING_YCBCR420 0x3
#define global OUTPUT_COLOR_ENCODING_INTENSITY 0x4