Lines Matching refs:vfmt
786 struct video_format vfmt; in video_enum_format() local
794 err = hw->enum_format(sc->hw_softc, fmtdesc->index, &vfmt); in video_enum_format()
798 video_format_to_v4l2_format(&vfmt, &fmt); in video_enum_format()
802 if (vfmt.pixel_format >= VIDEO_FORMAT_MJPEG) in video_enum_format()
805 video_pixel_format_str(vfmt.pixel_format), in video_enum_format()
816 struct video_format vfmt; in video_enum_framesizes() local
824 err = hw->enum_format(sc->hw_softc, frmdesc->index, &vfmt); in video_enum_framesizes()
828 video_format_to_v4l2_format(&vfmt, &fmt); in video_enum_framesizes()
835 frmdesc->discrete.width = vfmt.width; in video_enum_framesizes()
836 frmdesc->discrete.height = vfmt.height; in video_enum_framesizes()
860 struct video_format vfmt; in video_get_format() local
867 err = hw->get_format(sc->hw_softc, &vfmt); in video_get_format()
871 video_format_to_v4l2_format(&vfmt, format); in video_get_format()
880 struct video_format vfmt; in video_set_format() local
887 v4l2_format_to_video_format(fmt, &vfmt); in video_set_format()
889 err = hw->set_format(sc->hw_softc, &vfmt); in video_set_format()
893 video_format_to_v4l2_format(&vfmt, fmt); in video_set_format()
894 sc->sc_stream_in.vs_format = vfmt; in video_set_format()
905 struct video_format vfmt; in video_try_format() local
912 v4l2_format_to_video_format(format, &vfmt); in video_try_format()
914 err = hw->try_format(sc->hw_softc, &vfmt); in video_try_format()
918 video_format_to_v4l2_format(&vfmt, format); in video_try_format()