Lines Matching refs:format
63 // format suitable for use with SkBitmap. For the formula see
76 // Enumerates available frame sizes for specified pixel format and picks up the
219 v4l2_format format = {};
220 format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
221 format.fmt.pix.width = frame_size.width();
222 format.fmt.pix.height = frame_size.height();
223 format.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
224 format.fmt.pix.field = V4L2_FIELD_INTERLACED;
225 if (xioctl(fd, VIDIOC_S_FMT, &format) == -1) {
237 frame_width_ = format.fmt.pix.width;
238 frame_height_ = format.fmt.pix.height;