Lines Matching full:overlay
147 g_param_spec_int ("overlay-top", "Overlay top", in gst_v4l2sink_class_init()
148 "The topmost (y) coordinate of the video overlay; top left corner of screen is 0,0", in gst_v4l2sink_class_init()
151 g_param_spec_int ("overlay-left", "Overlay left", in gst_v4l2sink_class_init()
152 "The leftmost (x) coordinate of the video overlay; top left corner of screen is 0,0", in gst_v4l2sink_class_init()
155 g_param_spec_uint ("overlay-width", "Overlay width", in gst_v4l2sink_class_init()
156 "The width of the video overlay; default is equal to negotiated image width", in gst_v4l2sink_class_init()
159 g_param_spec_uint ("overlay-height", "Overlay height", in gst_v4l2sink_class_init()
160 "The height of the video overlay; default is equal to negotiated image height", in gst_v4l2sink_class_init()
232 * flags to indicate which overlay/crop properties the user has set (and
266 "setting overlay: overlay_fields_set=0x%02x, top=%d, left=%d, width=%d, height=%d", in gst_v4l2sink_sync_overlay_fields()
268 v4l2sink->overlay.top, v4l2sink->overlay.left, in gst_v4l2sink_sync_overlay_fields()
269 v4l2sink->overlay.width, v4l2sink->overlay.height); in gst_v4l2sink_sync_overlay_fields()
272 format.fmt.win.w.top = v4l2sink->overlay.top; in gst_v4l2sink_sync_overlay_fields()
274 format.fmt.win.w.left = v4l2sink->overlay.left; in gst_v4l2sink_sync_overlay_fields()
276 format.fmt.win.w.width = v4l2sink->overlay.width; in gst_v4l2sink_sync_overlay_fields()
278 format.fmt.win.w.height = v4l2sink->overlay.height; in gst_v4l2sink_sync_overlay_fields()
286 v4l2sink->overlay = format.fmt.win.w; in gst_v4l2sink_sync_overlay_fields()
350 v4l2sink->overlay.top = g_value_get_int (value); in gst_v4l2sink_set_property()
355 v4l2sink->overlay.left = g_value_get_int (value); in gst_v4l2sink_set_property()
360 v4l2sink->overlay.width = g_value_get_uint (value); in gst_v4l2sink_set_property()
365 v4l2sink->overlay.height = g_value_get_uint (value); in gst_v4l2sink_set_property()
407 g_value_set_int (value, v4l2sink->overlay.top); in gst_v4l2sink_get_property()
410 g_value_set_int (value, v4l2sink->overlay.left); in gst_v4l2sink_get_property()
413 g_value_set_uint (value, v4l2sink->overlay.width); in gst_v4l2sink_get_property()
416 g_value_set_uint (value, v4l2sink->overlay.height); in gst_v4l2sink_get_property()