- 论坛徽章:
- 0
|
回复 3# l2y3n2
个人认为该函数对应的驱动该是s3c_fimc_v4l2.c中的如下函数- static int s3c_fimc_v4l2_s_fbuf(struct file *filp, void *fh,
- struct v4l2_framebuffer *fb)
- {
- struct s3c_fimc_control *ctrl = (struct s3c_fimc_control *) fh;
- struct v4l2_framebuffer *frmbuf = &(ctrl->v4l2.frmbuf);
- int i, bpp;
- for (i = 0; i < S3C_FIMC_MAX_OVERLAY_FORMATS; i++) {
- if (s3c_fimc_overlay_formats[i].pixelformat == fb->fmt.pixelformat)
- break;
- }
- if (i == S3C_FIMC_MAX_OVERLAY_FORMATS)
- return -EINVAL;
- bpp = s3c_fimc_set_output_frame(ctrl, &fb->fmt);
- frmbuf->base = fb->base;
- frmbuf->flags = fb->flags;
- frmbuf->capability = fb->capability;
- frmbuf->fmt.width = fb->fmt.width;
- frmbuf->fmt.height = fb->fmt.height;
- frmbuf->fmt.field = fb->fmt.field;
- frmbuf->fmt.pixelformat = fb->fmt.pixelformat;
- frmbuf->fmt.bytesperline = fb->fmt.width * bpp / 8;
- frmbuf->fmt.sizeimage = fb->fmt.width * frmbuf->fmt.bytesperline;
- return 0;
- }
复制代码 继续跟踪- const static struct v4l2_fmtdesc s3c_fimc_overlay_formats[] = {
- {
- .index = 0,
- .type = V4L2_BUF_TYPE_VIDEO_OVERLAY,
- .flags = FORMAT_FLAGS_PACKED,
- .description = "16 bpp RGB, le",
- .pixelformat = V4L2_PIX_FMT_RGB565,
- },
- {
- .index = 1,
- .type = V4L2_BUF_TYPE_VIDEO_OVERLAY,
- .flags = FORMAT_FLAGS_PACKED,
- .description = "24 bpp RGB, le",
- .pixelformat = V4L2_PIX_FMT_RGB24,
- },
- };
复制代码 很明显该结构中没有我所需要的YUV420格式,意外的发现其存在于以下结构中- const static struct v4l2_fmtdesc s3c_fimc_capture_formats[] = {
- {
- .index = 0,
- .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
- .flags = FORMAT_FLAGS_PLANAR,
- .description = "4:2:0, planar, Y-Cb-Cr",
- .pixelformat = V4L2_PIX_FMT_YUV420,
- },
- {
- .index = 1,
- .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
- .flags = FORMAT_FLAGS_PLANAR,
- .description = "4:2:2, planar, Y-Cb-Cr",
- .pixelformat = V4L2_PIX_FMT_YUV422P,
- },
- {
- .index = 2,
- .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
- .flags = FORMAT_FLAGS_PACKED,
- .description = "4:2:2, packed, YCBYCR",
- .pixelformat = V4L2_PIX_FMT_YUYV,
- },
- {
- .index = 3,
- .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
- .flags = FORMAT_FLAGS_PACKED,
- .description = "4:2:2, packed, CBYCRY",
- .pixelformat = V4L2_PIX_FMT_UYVY,
- }
- };
复制代码 看来一开始就写错了,需要的不是overlay而是capture,看来网上看的参考代码不能全信啊= =!我继续写看看,高手们谁有做过相关东西的可以指导下!我的程序继续到底该怎么写呢?
有什么例子可以让我参考下吗?还有V4L2是如何跟TVP5150的驱动发生关系的? |
|