149b921c0de156a6bc4806c6fc70595ec8aec5eb
[platform/upstream/gstreamer.git] / ext / wayland / wldisplay.h
1 /* GStreamer Wayland video sink
2  *
3  * Copyright (C) 2014 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free
17  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301 USA.
19  */
20
21 #ifndef __GST_WL_DISPLAY_H__
22 #define __GST_WL_DISPLAY_H__
23
24 #include <gst/gst.h>
25 #include <wayland-client.h>
26
27 #define GST_TYPE_WL_DISPLAY                  (gst_wl_display_get_type ())
28 #define GST_WL_DISPLAY(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_WL_DISPLAY, GstWlDisplay))
29 #define GST_IS_WL_DISPLAY(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_WL_DISPLAY))
30 #define GST_WL_DISPLAY_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_WL_DISPLAY, GstWlDisplayClass))
31 #define GST_IS_WL_DISPLAY_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_WL_DISPLAY))
32 #define GST_WL_DISPLAY_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_WL_DISPLAY, GstWlDisplayClass))
33
34 typedef struct _GstWlDisplay GstWlDisplay;
35 typedef struct _GstWlDisplayClass GstWlDisplayClass;
36
37 struct _GstWlDisplay
38 {
39   GObject parent_instance;
40
41   /* public objects */
42   struct wl_display *display;
43   struct wl_event_queue *queue;
44
45   /* globals */
46   struct wl_registry *registry;
47   struct wl_compositor *compositor;
48   struct wl_shell *shell;
49   struct wl_shm *shm;
50   guint32 formats;
51
52   /* private */
53   gboolean own_display;
54   GThread *thread;
55   GstPoll *wl_fd_poll;
56 };
57
58 struct _GstWlDisplayClass
59 {
60   GObjectClass parent_class;
61 };
62
63 GType gst_wl_display_get_type (void);
64
65 GstWlDisplay *gst_wl_display_new (const gchar * name, GError ** error);
66 GstWlDisplay *gst_wl_display_new_existing (struct wl_display * display,
67     gboolean take_ownership, GError ** error);
68
69 #endif /* __GST_WL_DISPLAY_H__ */