Home
last modified time | relevance | path

Searched refs:pix_fmt_mp (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/drivers/media/platform/mtk-vcodec/
Dmtk_vcodec_enc.c289 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
292 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
295 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
296 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
300 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
303 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
310 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
311 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
312 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
315 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
Dmtk_vcodec_dec.c655 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
658 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
661 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
662 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
666 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
669 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
679 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
680 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
681 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
684 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
/Linux-v5.4/drivers/media/platform/s5p-mfc/
Ds5p_mfc_enc.c1349 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_g_fmt() local
1354 pix_fmt_mp->width = 0; in vidioc_g_fmt()
1355 pix_fmt_mp->height = 0; in vidioc_g_fmt()
1356 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_g_fmt()
1357 pix_fmt_mp->pixelformat = ctx->dst_fmt->fourcc; in vidioc_g_fmt()
1358 pix_fmt_mp->num_planes = ctx->dst_fmt->num_planes; in vidioc_g_fmt()
1360 pix_fmt_mp->plane_fmt[0].bytesperline = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1361 pix_fmt_mp->plane_fmt[0].sizeimage = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1364 pix_fmt_mp->width = ctx->img_width; in vidioc_g_fmt()
1365 pix_fmt_mp->height = ctx->img_height; in vidioc_g_fmt()
[all …]