CAMERA_STATUS_CHANGED_PARAM
- 定义:
typedef struct tagCameraStatusChangedParam { CAMERA_STATUS status; char id[CAMERA_ID_LEN]; int error; } CAMERA_STATUS_CHANGED_PARAM;
- 说明:
CAMERA_STATUS_CHANGED_PARAM 描述当 CAMERA_STATUS_CHANGED 事件发生时返回的参数。
成员 | 说明 |
---|---|
status | 改变后的状态 |
id | 摄像头ID |
error | 当 status != DISCONNECTED 时,error 始终为 ERROR_OK。 当 status == DISCONNECTED 时,error 代表使状态改变的错误原因。 当 error == ERROR_OK 时,表示与 camera 的连接是正常断开,其它参考错误常量定义。 |