Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/media/platform/mtk-vcodec/
Dmtk_vcodec_enc.c296 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
299 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
302 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
303 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
307 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
310 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
317 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
318 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
319 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
322 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
Dmtk_vcodec_dec.c638 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_try_fmt() local
641 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_try_fmt()
644 pix_fmt_mp->num_planes = 1; in vidioc_try_fmt()
645 pix_fmt_mp->plane_fmt[0].bytesperline = 0; in vidioc_try_fmt()
649 pix_fmt_mp->height = clamp(pix_fmt_mp->height, in vidioc_try_fmt()
652 pix_fmt_mp->width = clamp(pix_fmt_mp->width, in vidioc_try_fmt()
662 tmp_w = pix_fmt_mp->width; in vidioc_try_fmt()
663 tmp_h = pix_fmt_mp->height; in vidioc_try_fmt()
664 v4l_bound_align_image(&pix_fmt_mp->width, in vidioc_try_fmt()
667 &pix_fmt_mp->height, in vidioc_try_fmt()
[all …]
/Linux-v4.19/drivers/media/platform/s5p-mfc/
Ds5p_mfc_enc.c1372 struct v4l2_pix_format_mplane *pix_fmt_mp = &f->fmt.pix_mp; in vidioc_g_fmt() local
1377 pix_fmt_mp->width = 0; in vidioc_g_fmt()
1378 pix_fmt_mp->height = 0; in vidioc_g_fmt()
1379 pix_fmt_mp->field = V4L2_FIELD_NONE; in vidioc_g_fmt()
1380 pix_fmt_mp->pixelformat = ctx->dst_fmt->fourcc; in vidioc_g_fmt()
1381 pix_fmt_mp->num_planes = ctx->dst_fmt->num_planes; in vidioc_g_fmt()
1383 pix_fmt_mp->plane_fmt[0].bytesperline = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1384 pix_fmt_mp->plane_fmt[0].sizeimage = ctx->enc_dst_buf_size; in vidioc_g_fmt()
1387 pix_fmt_mp->width = ctx->img_width; in vidioc_g_fmt()
1388 pix_fmt_mp->height = ctx->img_height; in vidioc_g_fmt()
[all …]