Home | History | Annotate | Download | only in media

Lines Matching refs:qbuf

1118   struct v4l2_buffer qbuf;
1120 memset(&qbuf, 0, sizeof(qbuf));
1122 qbuf.index = buffer;
1123 qbuf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
1124 qbuf.timestamp.tv_sec = input_record.input_id;
1125 qbuf.memory = V4L2_MEMORY_MMAP;
1126 qbuf.m.planes = &qbuf_plane;
1127 qbuf.m.planes[0].bytesused = input_record.bytes_used;
1128 qbuf.length = 1;
1129 IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QBUF, &qbuf);
1167 struct v4l2_buffer qbuf;
1170 memset(&qbuf, 0, sizeof(qbuf));
1173 qbuf.index = buffer;
1174 qbuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1175 qbuf.memory = V4L2_MEMORY_MMAP;
1176 qbuf.m.planes = qbuf_planes.get();
1177 qbuf.length = output_planes_count_;
1178 IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QBUF, &qbuf);