Lines Matching refs:mp
570 struct v4l2_pix_format_mplane *mp = &mp_fmt->fmt.pix_mp; in fmt_sp2mp() local
571 struct v4l2_plane_pix_format *ppix = &mp->plane_fmt[0]; in fmt_sp2mp()
575 memset(mp->reserved, 0, sizeof(mp->reserved)); in fmt_sp2mp()
578 mp->width = pix->width; in fmt_sp2mp()
579 mp->height = pix->height; in fmt_sp2mp()
580 mp->pixelformat = pix->pixelformat; in fmt_sp2mp()
581 mp->field = pix->field; in fmt_sp2mp()
582 mp->colorspace = pix->colorspace; in fmt_sp2mp()
583 mp->xfer_func = pix->xfer_func; in fmt_sp2mp()
584 mp->ycbcr_enc = pix->ycbcr_enc; in fmt_sp2mp()
585 mp->quantization = pix->quantization; in fmt_sp2mp()
586 mp->num_planes = 1; in fmt_sp2mp()
587 mp->flags = pix->flags; in fmt_sp2mp()
597 struct v4l2_pix_format_mplane *mp = &fmt.fmt.pix_mp; in fmt_sp2mp_func() local
598 struct v4l2_plane_pix_format *ppix = &mp->plane_fmt[0]; in fmt_sp2mp_func()
607 pix->width = mp->width; in fmt_sp2mp_func()
608 pix->height = mp->height; in fmt_sp2mp_func()
609 pix->pixelformat = mp->pixelformat; in fmt_sp2mp_func()
610 pix->field = mp->field; in fmt_sp2mp_func()
611 pix->colorspace = mp->colorspace; in fmt_sp2mp_func()
612 pix->xfer_func = mp->xfer_func; in fmt_sp2mp_func()
613 pix->ycbcr_enc = mp->ycbcr_enc; in fmt_sp2mp_func()
614 pix->quantization = mp->quantization; in fmt_sp2mp_func()
617 pix->flags = mp->flags; in fmt_sp2mp_func()