Lines Matching defs:fmt
2 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
469 struct v4l2_pix_format *fmt;
533 vv->ov_fb.fmt.width = vv->standard->h_max_out;
534 vv->ov_fb.fmt.height = vv->standard->v_max_out;
535 vv->ov_fb.fmt.pixelformat = V4L2_PIX_FMT_RGB565;
536 vv->ov_fb.fmt.bytesperline = 2 * vv->ov_fb.fmt.width;
537 vv->ov_fb.fmt.sizeimage = vv->ov_fb.fmt.bytesperline * vv->ov_fb.fmt.height;
538 vv->ov_fb.fmt.colorspace = V4L2_COLORSPACE_SRGB;
540 fmt = &vv->video_fmt;
541 fmt->width = 384;
542 fmt->height = 288;
543 fmt->pixelformat = V4L2_PIX_FMT_BGR24;
544 fmt->field = V4L2_FIELD_ANY;
545 fmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
546 fmt->bytesperline = 3 * fmt->width;
547 fmt->sizeimage = fmt->bytesperline * fmt->height;