Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
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
43
44
45
46
package com.netsdk.lib.structure;
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 隐私遮挡通用能力集
 * @date 2022/07/21 13:40:57
 */
public class NET_PRIVACY_MASKING_CAPS extends NetSDKLib.SdkStructure {
    /**
     * 是否支持PrivacyMasking设置
     */
    public int bSupport;
    /**
     * 隐私遮档版本号 {@link com.netsdk.lib.enumeration.EM_PRIVACY_MASKING_VERSION}
     */
    public int emVersion;
    /**
     * 支持最大隐私遮挡块数目
     */
    public int nSupportMaskingNum;
    /**
     * 系统支持的隐私遮挡块(包括纯色块和马赛克)最大个数,代表了芯片平台能支持的最大能力。
     */
    public int nMaxChipMaskingNum;
    /**
     * 纯色隐私遮挡块的能力集
     */
    public NET_COLOR_MASKING_CAPS stuColorMaskingCaps = new NET_COLOR_MASKING_CAPS();
    /**
     * 马赛克隐私遮挡块的能力集
     */
    public NET_MOSAIC_MASKING_CAPS stuMosaicMaskingCaps = new NET_MOSAIC_MASKING_CAPS();
    /**
     * 屏蔽倍率能力集
     */
    public NET_SHIELD_ZOOM_CAPS stuShieldZoom = new NET_SHIELD_ZOOM_CAPS();
    /**
     * 保留字节
     */
    public byte[] byReserved = new byte[1024];
 
    public NET_PRIVACY_MASKING_CAPS() {
    }
}