Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/media/platform/mtk-vcodec/
Dmtk_vcodec_enc.c254 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
257 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
260 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
261 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
265 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
268 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
275 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
276 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
277 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
280 &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
662 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
665 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
666 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
670 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
673 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
683 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
684 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
685 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
688 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
/Linux-v5.10/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 …]