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

  /external/libxcam/xcore/
v4l2_device.cpp 486 struct v4l2_buffer v4l2_buf; local
488 xcam_mem_clear (v4l2_buf);
489 v4l2_buf.index = index;
490 v4l2_buf.type = _capture_buf_type;
491 v4l2_buf.memory = _memory_type;
505 v4l2_buf.m.fd = expbuf.fd;
506 v4l2_buf.length = format.fmt.pix.sizeimage;
516 if (io_control (VIDIOC_QUERYBUF, &v4l2_buf) < 0) {
520 pointer = mmap (0, v4l2_buf.length, PROT_READ | PROT_WRITE, map_flags, _fd, v4l2_buf.m.offset)
585 struct v4l2_buffer v4l2_buf; local
624 struct v4l2_buffer v4l2_buf = buf->get_buf (); local
    [all...]
drm_display.cpp 334 struct v4l2_buffer v4l2_buf; local
339 xcam_mem_clear (v4l2_buf);
354 v4l2_buf.index = index;
355 v4l2_buf.type = buf_type;
356 v4l2_buf.memory = V4L2_MEMORY_DMABUF;
357 v4l2_buf.m.fd = prime.fd;
358 v4l2_buf.length = XCAM_MAX (format.fmt.pix.sizeimage, gem.size); // todo check gem.size and format.fmt.pix.length
360 return new DrmV4l2Buffer (gem.handle, v4l2_buf, format, _instance);

Completed in 361 milliseconds