1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 260611
 * @description 设置源边框高亮使能开关输入参数
 * @date 2022/06/22 09:56:19
 */
public class NET_IN_SPLIT_SET_HIGHLIGHT extends NetSDKLib.SdkStructure {
 
    public int dwSize;
    /**
     * 视频输出通道
     */
    public int nChannel;
    /**
     * 窗口号
     */
    public int nWindow;
    /**
     * 边框高亮使能,TRUE-表示高亮
     */
    public int bHighLightEn;
    /**
     * 边框颜色
     */
    public NET_COLOR_RGBA stuColor = new NET_COLOR_RGBA();
    /**
     * 边框闪烁次数
     */
    public int nBlinkTimes;
    /**
     * 闪烁间隔时间,单位ms
     */
    public int nBlinkInterval;
 
    public NET_IN_SPLIT_SET_HIGHLIGHT() {
        this.dwSize = this.size();
    }
}