Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/media/platform/mtk-vcodec/
Dmtk_vcodec_enc.c266 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
268 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
271 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
272 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
285 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
288 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
295 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
296 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
297 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
300 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
Dmtk_vcodec_dec.c659 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
661 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
664 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
665 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
669 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
672 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
682 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
683 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
684 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
687 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
/Linux-v5.15/drivers/media/platform/s5p-mfc/
Ds5p_mfc_enc.c1355 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_g_fmt() local
1360 pix_fmt_mp->width = 0; in vidioc_g_fmt()
1361 pix_fmt_mp->height = 0; in vidioc_g_fmt()
1362 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_g_fmt()
1363 pix_fmt_mp->pixelformat = ctx->dst_fmt->fourcc; in vidioc_g_fmt()
1364 pix_fmt_mp->num_planes = ctx->dst_fmt->num_planes; in vidioc_g_fmt()
1366 pix_fmt_mp->plane_fmt[0].bytesperline = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1367 pix_fmt_mp->plane_fmt[0].sizeimage = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1370 pix_fmt_mp->width = ctx->img_width; in vidioc_g_fmt()
1371 pix_fmt_mp->height = ctx->img_height; in vidioc_g_fmt()
[all …]