1 /* GStreamer Video Overlay Interface
2 * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
3 * Copyright (C) 2003 Julien Moutte <julien@moutte.net>
4 * Copyright (C) 2011 Tim-Philipp Müller <tim@centricular.net>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 #ifndef __GST_VIDEO_OVERLAY_H__
23 #define __GST_VIDEO_OVERLAY_H__
26 #include <gst/video/gstvideosink.h>
30 #define GST_TYPE_VIDEO_OVERLAY \
31 (gst_video_overlay_get_type ())
32 #define GST_VIDEO_OVERLAY(obj) \
33 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VIDEO_OVERLAY, GstVideoOverlay))
34 #define GST_IS_VIDEO_OVERLAY(obj) \
35 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_VIDEO_OVERLAY))
36 #define GST_VIDEO_OVERLAY_GET_INTERFACE(inst) \
37 (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_VIDEO_OVERLAY, GstVideoOverlayInterface))
42 * Opaque #GstVideoOverlay interface structure
44 typedef struct _GstVideoOverlay GstVideoOverlay;
45 typedef struct _GstVideoOverlayInterface GstVideoOverlayInterface;
46 typedef struct _GstVideoOverlayProperties GstVideoOverlayProperties;
49 * GstVideoOverlayInterface:
50 * @iface: parent interface type.
51 * @expose: virtual method to handle expose events
52 * @handle_events: virtual method to handle events
53 * @set_render_rectangle: virtual method to set the render rectangle
54 * @set_window_handle: virtual method to configure the window handle
55 * @properties_offset: Offset to the #GstVideoOverlayProperties in the
56 * instance allocation. Since 1.14
58 * #GstVideoOverlay interface
60 struct _GstVideoOverlayInterface {
63 /* virtual functions */
64 void (*expose) (GstVideoOverlay *overlay);
66 void (*handle_events) (GstVideoOverlay *overlay, gboolean handle_events);
68 void (*set_render_rectangle) (GstVideoOverlay *overlay,
70 gint width, gint height);
72 void (*set_window_handle) (GstVideoOverlay *overlay, guintptr handle);
76 GType gst_video_overlay_get_type (void);
78 /* virtual function wrappers */
81 gboolean gst_video_overlay_set_render_rectangle (GstVideoOverlay * overlay,
88 void gst_video_overlay_expose (GstVideoOverlay * overlay);
91 void gst_video_overlay_handle_events (GstVideoOverlay * overlay,
92 gboolean handle_events);
95 void gst_video_overlay_set_window_handle (GstVideoOverlay * overlay,
98 /* public methods to dispatch bus messages */
101 void gst_video_overlay_got_window_handle (GstVideoOverlay * overlay,
105 void gst_video_overlay_prepare_window_handle (GstVideoOverlay * overlay);
108 gboolean gst_is_video_overlay_prepare_window_handle_message (GstMessage * msg);
111 void gst_video_overlay_install_properties (GObjectClass * oclass,
115 gboolean gst_video_overlay_set_property (GObject * object,
118 const GValue * value);
122 #endif /* __GST_VIDEO_OVERLAY_H__ */