Lines Matching full:win
125 void dump_window(struct v4l2_window *win)
127 LOGI("window l: %d ", win->w.left);
128 LOGI("window t: %d ", win->w.top);
129 LOGI("window w: %d ", win->w.width);
130 LOGI("window h: %d\n", win->w.height);
151 dump_window(&format.fmt.win);
213 static void configure_window(struct v4l2_window *win, int32_t w,
218 win->w.left = x;
219 win->w.top = y;
220 win->w.width = w;
221 win->w.height = h;
229 *x = format->fmt.win.w.left;
230 *y = format->fmt.win.w.top;
231 *w = format->fmt.win.w.width;
232 *h = format->fmt.win.w.height;
304 LOGI("v4l2_overlay_set_position:: w=%d h=%d", format.fmt.win.w.width, format.fmt.win.w.height);
306 configure_window(&format.fmt.win, w, h, x, y);
311 LOGI("v4l2_overlay_set_position:: w=%d h=%d", format.fmt.win.w.width, format.fmt.win.w.height);
415 fmt.fmt.win.chromakey = colorkey & 0xFFFFFF;
456 fmt.fmt.win.global_alpha = alpha & 0xFF;