提交 16ce96ee 编写于 作者: X Xiangquan Xiao

Update video_driver_component.cc

上级 14fe2017
......@@ -80,10 +80,11 @@ void CompCameraH265Compressed::VideoPoll() {
if (!camera_deivce_->Poll(pb_image_)) {
AERROR << "H265 poll failed on port: " << camera_deivce_->Port();
static constexpr int kTolerance = 256;
if (++poll_failure_number > kTolerance) {
if (poll_failure_number > kTolerance) {
AERROR << "H265 poll keep failing for " << kTolerance << " times, Exit";
break;
}
++poll_failure_number;
continue;
}
poll_failure_number = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册