Home | History | Annotate | Download | only in src

Lines Matching refs:v4l2_buf

131   struct v4l2_buffer v4l2_buf ={0};
150 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
151 v4l2_buf.memory = V4L2_MEMORY_USERPTR;
152 v4l2_buf.length = 1;
153 v4l2_buf.m.planes = &plane;
154 rc = ioctl(pfd.fd, VIDIOC_DQBUF, &v4l2_buf);
162 vdec_msg.msgdata.output_frame.client_data=(void*)&v4l2_buf;
167 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
168 v4l2_buf.memory = V4L2_MEMORY_USERPTR;
169 v4l2_buf.m.planes = &plane;
170 rc = ioctl(pfd.fd, VIDIOC_DQBUF, &v4l2_buf);
178 vdec_msg.msgdata.input_frame_clientdata=(void*)&v4l2_buf;
7398 struct v4l2_buffer v4l2_buf ={0};