Lines Matching refs:pix
549 const struct v4l2_pix_format *pix = &sp_fmt->fmt.pix; in fmt_sp2mp() local
555 mp->width = pix->width; in fmt_sp2mp()
556 mp->height = pix->height; in fmt_sp2mp()
557 mp->pixelformat = pix->pixelformat; in fmt_sp2mp()
558 mp->field = pix->field; in fmt_sp2mp()
559 mp->colorspace = pix->colorspace; in fmt_sp2mp()
560 mp->ycbcr_enc = pix->ycbcr_enc; in fmt_sp2mp()
561 mp->quantization = pix->quantization; in fmt_sp2mp()
563 mp->flags = pix->flags; in fmt_sp2mp()
564 ppix->sizeimage = pix->sizeimage; in fmt_sp2mp()
565 ppix->bytesperline = pix->bytesperline; in fmt_sp2mp()
575 struct v4l2_pix_format *pix = &f->fmt.pix; in fmt_sp2mp_func() local
583 pix->width = mp->width; in fmt_sp2mp_func()
584 pix->height = mp->height; in fmt_sp2mp_func()
585 pix->pixelformat = mp->pixelformat; in fmt_sp2mp_func()
586 pix->field = mp->field; in fmt_sp2mp_func()
587 pix->colorspace = mp->colorspace; in fmt_sp2mp_func()
588 pix->ycbcr_enc = mp->ycbcr_enc; in fmt_sp2mp_func()
589 pix->quantization = mp->quantization; in fmt_sp2mp_func()
590 pix->sizeimage = ppix->sizeimage; in fmt_sp2mp_func()
591 pix->bytesperline = ppix->bytesperline; in fmt_sp2mp_func()
592 pix->flags = mp->flags; in fmt_sp2mp_func()