Lines Matching refs:mp
605 struct v4l2_pix_format_mplane *mp = &mp_fmt->fmt.pix_mp; in fmt_sp2mp() local
606 struct v4l2_plane_pix_format *ppix = &mp->plane_fmt[0]; in fmt_sp2mp()
610 memset(mp->reserved, 0, sizeof(mp->reserved)); in fmt_sp2mp()
613 mp->width = pix->width; in fmt_sp2mp()
614 mp->height = pix->height; in fmt_sp2mp()
615 mp->pixelformat = pix->pixelformat; in fmt_sp2mp()
616 mp->field = pix->field; in fmt_sp2mp()
617 mp->colorspace = pix->colorspace; in fmt_sp2mp()
618 mp->xfer_func = pix->xfer_func; in fmt_sp2mp()
619 mp->ycbcr_enc = pix->ycbcr_enc; in fmt_sp2mp()
620 mp->quantization = pix->quantization; in fmt_sp2mp()
621 mp->num_planes = 1; in fmt_sp2mp()
622 mp->flags = pix->flags; in fmt_sp2mp()
632 struct v4l2_pix_format_mplane *mp = &fmt.fmt.pix_mp; in fmt_sp2mp_func() local
633 struct v4l2_plane_pix_format *ppix = &mp->plane_fmt[0]; in fmt_sp2mp_func()
642 pix->width = mp->width; in fmt_sp2mp_func()
643 pix->height = mp->height; in fmt_sp2mp_func()
644 pix->pixelformat = mp->pixelformat; in fmt_sp2mp_func()
645 pix->field = mp->field; in fmt_sp2mp_func()
646 pix->colorspace = mp->colorspace; in fmt_sp2mp_func()
647 pix->xfer_func = mp->xfer_func; in fmt_sp2mp_func()
648 pix->ycbcr_enc = mp->ycbcr_enc; in fmt_sp2mp_func()
649 pix->quantization = mp->quantization; in fmt_sp2mp_func()
652 pix->flags = mp->flags; in fmt_sp2mp_func()