Commit e5236cec authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #12405 from todortomov:3.4_cap_v4l_query_conrtols

parents 6aff916a 9988e1b6
...@@ -512,9 +512,11 @@ static void v4l2_scan_controls(CvCaptureCAM_V4L* capture) ...@@ -512,9 +512,11 @@ static void v4l2_scan_controls(CvCaptureCAM_V4L* capture)
for (ctrl_id = V4L2_CID_PRIVATE_BASE;;ctrl_id++) for (ctrl_id = V4L2_CID_PRIVATE_BASE;;ctrl_id++)
{ {
errno = 0;
v4l2_control_range(capture, ctrl_id); v4l2_control_range(capture, ctrl_id);
if (errno == EINVAL) if (errno)
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment