Home | History | Annotate | Download | only in src

Lines Matching refs:bufreq

1540     struct v4l2_requestbuffers bufreq;
1554 memset(&bufreq, 0, sizeof(bufreq));
1555 bufreq.count = buf_num;
1556 bufreq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1557 bufreq.memory = V4L2_MEMORY_USERPTR;
1558 rc = ioctl(my_obj->fd, VIDIOC_REQBUFS, &bufreq);
1935 struct v4l2_requestbuffers bufreq;
1941 bufreq.count = 0;
1942 bufreq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1943 bufreq.memory = V4L2_MEMORY_USERPTR;
1944 rc = ioctl(my_obj->fd, VIDIOC_REQBUFS, &bufreq);