HomeSort by relevance Sort by last modified time
    Searched refs:v4l2_buf (Results 1 - 5 of 5) sorted by null

  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCamera.cpp 1323 struct v4l2_buffer v4l2_buf; local
1363 struct v4l2_buffer v4l2_buf; local
1527 struct v4l2_buffer v4l2_buf; local
1578 struct v4l2_buffer v4l2_buf; local
1710 struct v4l2_buffer v4l2_buf; local
1755 struct v4l2_buffer v4l2_buf; local
3469 struct v4l2_buffer v4l2_buf; local
    [all...]
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegBase.cpp 199 struct v4l2_buffer v4l2_buf; local
204 memset(&v4l2_buf, 0, sizeof(struct v4l2_buffer));
207 v4l2_buf.index = 0;
208 v4l2_buf.type = pstBufInfo->buf_type;
209 v4l2_buf.memory = pstBufInfo->memory;
210 v4l2_buf.field = V4L2_FIELD_ANY;
211 v4l2_buf.length = pstBufInfo->numOfPlanes;
212 v4l2_buf.m.planes = plane;
216 v4l2_buf.m.planes[i].m.fd = (unsigned long)pstBuf->addr[i];
217 v4l2_buf.m.planes[i].length = pstBuf->size[i]
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp 163 struct v4l2_buffer v4l2_buf; local
168 v4l2_buf.m.planes = planes;
169 v4l2_buf.type = node->type;
170 v4l2_buf.memory = node->memory;
171 v4l2_buf.index = index;
172 v4l2_buf.length = node->planes;
175 v4l2_buf.m.planes[i].m.fd = (int)(node->buffer[index].fd.extFd[i]);
176 v4l2_buf.m.planes[i].length = (unsigned long)(node->buffer[index].size.extS[i]);
179 ret = exynos_v4l2_qbuf(node->fd, &v4l2_buf);
234 struct v4l2_buffer v4l2_buf; local
252 struct v4l2_buffer v4l2_buf; local
1553 struct v4l2_buffer v4l2_buf; local
2021 struct v4l2_buffer v4l2_buf; local
4000 struct v4l2_buffer v4l2_buf; local
    [all...]
  /hardware/qcom/media/mm-video/vidc/venc/src/
video_encoder_device_copper.cpp 172 struct v4l2_buffer v4l2_buf ={0}; local
188 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
189 v4l2_buf.memory = V4L2_MEMORY_USERPTR;
190 v4l2_buf.length = 1;
191 v4l2_buf.m.planes = &plane;
192 rc = ioctl(pfd.fd, VIDIOC_DQBUF, &v4l2_buf);
199 omxhdr=omx_venc_base->m_out_mem_ptr+v4l2_buf.index;
200 venc_msg.buf.len= v4l2_buf.m.planes->bytesused;
201 venc_msg.buf.offset = v4l2_buf.m.planes->reserved[1];
202 venc_msg.buf.ptrbuffer = (OMX_U8 *)omx_venc_base->m_pOutput_pmem[v4l2_buf.index].buffer
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/src/
omx_vdec_copper.cpp 131 struct v4l2_buffer v4l2_buf ={0}; local
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
7398 struct v4l2_buffer v4l2_buf ={0}; local
    [all...]

Completed in 890 milliseconds