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_STATISTICS is the result of video and audio statistics of camera
| 成员 | 说明 |
| video_frames_recved | The video frames received per second |
| video_bytes_recved | The number of bytes of video received per second |
| audio_samples_recved | The number of audio packets received per second |
| audio_bytes_recved | The number of bytes of audio received per second |
| audio_sample_sent | The number of audio packets sent per second |
| audio_bytes_sent | The number of bytes of audio sent per second |