跳转至

NET_SDK_AVD_CONFIG

结构体定义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
typedef struct _net_sdk_AVD_Config
{
    unsigned int alarmHoldTime;         
    unsigned int sceneChangeSwitch;     
    unsigned int clarityAbnormalSwitch; 
    unsigned int colorAbnormalSwitch;   
    unsigned int sensitivity;           
    unsigned int maxSensitivity;        
    unsigned int minSensitivity;        
    char resv[40];                      
} NET_SDK_AVD_CONFIG;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_AVD_CONFIG
{
    public UInt32 alarmHoldTime;
    public UInt32 sceneChangeSwitch;
    public UInt32 clarityAbnormalSwitch;
    public UInt32 colorAbnormalSwitch;
    public UInt32 sensitivity;
    public UInt32 maxSensitivity;
    public UInt32 minSensitivity;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 40)]
    public byte[] resv;
}

功能描述

异常视频配置结构体。

成员说明

成员 类型 备注
alarmHoldTime unsigned int 报警持续时间。
sceneChangeSwitch unsigned int 场景变更使能,0 或 1。
clarityAbnormalSwitch unsigned int 视频模糊使能,0 或 1。
colorAbnormalSwitch unsigned int 视频偏色使能,0 或 1。
sensitivity unsigned int 灵敏度。
maxSensitivity unsigned int 最大灵敏度。
minSensitivity unsigned int 最小灵敏度。
resv char[40] 预留字段。
错误码