CAMERA_STATISTICS
- 定义:
typedef struct tagCameraStatistics
{
long video_frames_recved;
long video_bytes_recved;
long audio_samples_recved;
long audio_bytes_recved;
long audio_sample_sent;
long audio_bytes_sent;
}CAMERA_STATISTICS;
- 说明:
Camera统计事件传出的数据结构。
| 成员 | 说明 |
|---|---|
| video_frames_recved | 每秒收到的视频帧数 |
| video_bytes_recved | 每秒收到的视频字节数 |
| audio_samples_recved | 每秒收到的音频包个数 |
| audio_bytes_recved | 每秒收到的音频字节数 |
| audio_sample_sent | 每秒发出的音频包个数 |
| audio_bytes_sent | 每秒发出的音频字节数 |