跳转至

DD_VIDEO_COLOR

结构体定义

1
2
3
4
5
6
7
8
typedef struct _dd_video_color_
{
    unsigned int startTime;   
    unsigned char brightness; 
    unsigned char hue;        
    unsigned char saturation; 
    unsigned char contrast;   
} DD_VIDEO_COLOR;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_VIDEO_COLOR
{
    public UInt32 startTime;
    public byte brightness;
    public byte hue;
    public byte saturation;
    public byte contrast;
}

功能描述

视频色彩信息结构体。

成员说明

成员 类型 备注
startTime unsigned int 此套色彩对应的开始时间(一天内相对时间)。
brightness unsigned char 亮度。
hue unsigned char 色度。
saturation unsigned char 饱和度。
contrast unsigned char 对比度。
错误码