Lines Matching refs:pixmp

368 	struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp;  in vdec_g_fmt()  local
375 pixmp->pixelformat = cur_fmt->pixfmt; in vdec_g_fmt()
376 pixmp->num_planes = cur_fmt->mem_planes; in vdec_g_fmt()
377 pixmp->width = cur_fmt->width; in vdec_g_fmt()
378 pixmp->height = cur_fmt->height; in vdec_g_fmt()
379 pixmp->field = cur_fmt->field; in vdec_g_fmt()
380 pixmp->flags = cur_fmt->flags; in vdec_g_fmt()
381 for (i = 0; i < pixmp->num_planes; i++) { in vdec_g_fmt()
382 pixmp->plane_fmt[i].bytesperline = cur_fmt->bytesperline[i]; in vdec_g_fmt()
383 pixmp->plane_fmt[i].sizeimage = vpu_get_fmt_plane_size(cur_fmt, i); in vdec_g_fmt()
430 struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp; in vdec_s_fmt_common() local
459 if (vpu_helper_match_format(inst, f->type, cur_fmt->pixfmt, pixmp->pixelformat)) { in vdec_s_fmt_common()
463 pixmp->pixelformat = cur_fmt->pixfmt; in vdec_s_fmt_common()
464 pixmp->num_planes = cur_fmt->mem_planes; in vdec_s_fmt_common()
465 pixmp->width = cur_fmt->width; in vdec_s_fmt_common()
466 pixmp->height = cur_fmt->height; in vdec_s_fmt_common()
467 for (i = 0; i < pixmp->num_planes; i++) { in vdec_s_fmt_common()
468 pixmp->plane_fmt[i].bytesperline = cur_fmt->bytesperline[i]; in vdec_s_fmt_common()
469 pixmp->plane_fmt[i].sizeimage = vpu_get_fmt_plane_size(cur_fmt, i); in vdec_s_fmt_common()
471 pixmp->field = cur_fmt->field; in vdec_s_fmt_common()
504 struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp; in vdec_s_fmt() local
519 fc.fmt.pix_mp.width = pixmp->width; in vdec_s_fmt()
520 fc.fmt.pix_mp.height = pixmp->height; in vdec_s_fmt()