Lines Matching defs:win
833 struct v4l2_window *win = &f->fmt.win;
837 win->w.top = dev->overlay_out_top;
838 win->w.left = dev->overlay_out_left;
839 win->w.width = compose->width;
840 win->w.height = compose->height;
841 win->field = V4L2_FIELD_ANY;
842 win->chromakey = dev->chromakey_out;
843 win->global_alpha = dev->global_alpha_out;
852 struct v4l2_window *win = &f->fmt.win;
856 win->w.left = clamp_t(int, win->w.left,
858 win->w.top = clamp_t(int, win->w.top,
860 win->w.width = compose->width;
861 win->w.height = compose->height;
866 win->field = V4L2_FIELD_ANY;
874 struct v4l2_window *win = &f->fmt.win;
880 dev->overlay_out_top = win->w.top;
881 dev->overlay_out_left = win->w.left;
882 dev->chromakey_out = win->chromakey;
883 dev->global_alpha_out = win->global_alpha;