Lines Matching refs:fmtdesc
122 const struct uvc_format_desc *fmtdesc = to_uvc_format(format->fmt); in find_format_by_pix() local
124 if (IS_ERR(fmtdesc)) in find_format_by_pix()
127 if (fmtdesc->fcc == pixelformat) { in find_format_by_pix()
246 const struct uvc_format_desc *fmtdesc; in uvc_v4l2_try_format() local
284 fmtdesc = to_uvc_format(uformat); in uvc_v4l2_try_format()
285 if (IS_ERR(fmtdesc)) in uvc_v4l2_try_format()
286 return PTR_ERR(fmtdesc); in uvc_v4l2_try_format()
287 fmt->fmt.pix.pixelformat = fmtdesc->fcc; in uvc_v4l2_try_format()
388 const struct uvc_format_desc *fmtdesc; in uvc_v4l2_enum_format() local
398 fmtdesc = to_uvc_format(uformat); in uvc_v4l2_enum_format()
399 if (IS_ERR(fmtdesc)) in uvc_v4l2_enum_format()
400 return PTR_ERR(fmtdesc); in uvc_v4l2_enum_format()
402 f->pixelformat = fmtdesc->fcc; in uvc_v4l2_enum_format()