houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 隐私遮挡通用能力集
8  * @date 2022/07/21 13:40:57
9  */
10 public class NET_PRIVACY_MASKING_CAPS extends NetSDKLib.SdkStructure {
11     /**
12      * 是否支持PrivacyMasking设置
13      */
14     public int bSupport;
15     /**
16      * 隐私遮档版本号 {@link com.netsdk.lib.enumeration.EM_PRIVACY_MASKING_VERSION}
17      */
18     public int emVersion;
19     /**
20      * 支持最大隐私遮挡块数目
21      */
22     public int nSupportMaskingNum;
23     /**
24      * 系统支持的隐私遮挡块(包括纯色块和马赛克)最大个数,代表了芯片平台能支持的最大能力。
25      */
26     public int nMaxChipMaskingNum;
27     /**
28      * 纯色隐私遮挡块的能力集
29      */
30     public NET_COLOR_MASKING_CAPS stuColorMaskingCaps = new NET_COLOR_MASKING_CAPS();
31     /**
32      * 马赛克隐私遮挡块的能力集
33      */
34     public NET_MOSAIC_MASKING_CAPS stuMosaicMaskingCaps = new NET_MOSAIC_MASKING_CAPS();
35     /**
36      * 屏蔽倍率能力集
37      */
38     public NET_SHIELD_ZOOM_CAPS stuShieldZoom = new NET_SHIELD_ZOOM_CAPS();
39     /**
40      * 保留字节
41      */
42     public byte[] byReserved = new byte[1024];
43
44     public NET_PRIVACY_MASKING_CAPS() {
45     }
46 }