1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #12405 from todortomov:3.4_cap_v4l_query_conrtols

This commit is contained in:
Alexander Alekhin
2018-09-04 12:55:05 +00:00
+3 -1
View File
@@ -512,9 +512,11 @@ static void v4l2_scan_controls(CvCaptureCAM_V4L* capture)
for (ctrl_id = V4L2_CID_PRIVATE_BASE;;ctrl_id++)
{
errno = 0;
v4l2_control_range(capture, ctrl_id);
if (errno == EINVAL)
if (errno)
break;
}