Home | History | Annotate | Download | only in src

Lines Matching refs:bufreq

1199     struct v4l2_requestbuffers bufreq;
1210 memset(&bufreq, 0, sizeof(bufreq));
1211 bufreq.count = buf_num;
1212 bufreq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1213 bufreq.memory = V4L2_MEMORY_USERPTR;
1214 rc = ioctl(my_obj->fd, VIDIOC_REQBUFS, &bufreq);
1557 struct v4l2_requestbuffers bufreq;
1563 bufreq.count = 0;
1564 bufreq.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1565 bufreq.memory = V4L2_MEMORY_USERPTR;
1566 rc = ioctl(my_obj->fd, VIDIOC_REQBUFS, &bufreq);