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