Skip to content

DD_VIDEO_COLOR

Structure Definition

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;
}

Function Description

Video color information structure.

Member Description

Member Type Remark
startTime unsigned int The start time (relative time within a day) for this set of colors.
brightness unsigned char Brightness.
hue unsigned char Chroma.
saturation unsigned char Saturation.
contrast unsigned char Contrast.
Error Code