4c500e90aa9c4a63ebc05df425bf8dbfa98d2015
[platform/upstream/gstreamer.git] / ext / wayland / gstwaylandsink.h
1 /*
2  * GStreamer Wayland video sink
3  * Copyright (C) 2011 Intel Corporation
4  * Copyright (C) 2011 Sreerenj Balachandran <sreerenj.balachandran@intel.com>
5  *
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.
10  *
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.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef __GST_WAYLAND_VIDEO_SINK_H__
23 #define __GST_WAYLAND_VIDEO_SINK_H__
24
25 #include <gst/gst.h>
26 #include <gst/video/video.h>
27
28 #include <wayland-client.h>
29
30 #include "wldisplay.h"
31 #include "wlwindow.h"
32
33 G_BEGIN_DECLS
34 #define GST_TYPE_WAYLAND_SINK \
35             (gst_wayland_sink_get_type())
36 #define GST_WAYLAND_SINK(obj) \
37             (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAYLAND_SINK,GstWaylandSink))
38 #define GST_WAYLAND_SINK_CLASS(klass) \
39             (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAYLAND_SINK,GstWaylandSinkClass))
40 #define GST_IS_WAYLAND_SINK(obj) \
41             (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAYLAND_SINK))
42 #define GST_IS_WAYLAND_SINK_CLASS(klass) \
43             (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAYLAND_SINK))
44 #define GST_WAYLAND_SINK_GET_CLASS(inst) \
45         (G_TYPE_INSTANCE_GET_CLASS ((inst), GST_TYPE_WAYLAND_SINK, GstWaylandSinkClass))
46 #ifdef GST_WLSINK_ENHANCEMENT
47 enum
48 {
49   DISP_GEO_METHOD_LETTER_BOX = 0,
50   DISP_GEO_METHOD_ORIGIN_SIZE,
51   DISP_GEO_METHOD_FULL_SCREEN,
52   DISP_GEO_METHOD_CROPPED_FULL_SCREEN,
53   DISP_GEO_METHOD_ORIGIN_SIZE_OR_LETTER_BOX,
54   DISP_GEO_METHOD_NUM,
55 };
56
57 enum
58 {
59   DEGREE_0,
60   DEGREE_90,
61   DEGREE_180,
62   DEGREE_270,
63   DEGREE_NUM,
64 };
65
66 enum
67 {
68   FLIP_NONE = 0,
69   FLIP_HORIZONTAL,
70   FLIP_VERTICAL,
71   FLIP_BOTH,
72   FLIP_NUM,
73 };
74
75 #define DEF_DISPLAY_FLIP            FLIP_NONE
76 #define DEF_DISPLAY_GEOMETRY_METHOD         DISP_GEO_METHOD_LETTER_BOX
77 #endif
78
79 typedef struct _GstWaylandSink GstWaylandSink;
80 typedef struct _GstWaylandSinkClass GstWaylandSinkClass;
81
82 struct _GstWaylandSink
83 {
84   GstVideoSink parent;
85
86   GMutex display_lock;
87   GstWlDisplay *display;
88   GstWlWindow *window;
89   GstBufferPool *pool;
90
91   gboolean video_info_changed;
92   GstVideoInfo video_info;
93
94   gchar *display_name;
95
96   gboolean redraw_pending;
97   GMutex render_lock;
98   GstBuffer *last_buffer;
99 #ifdef GST_WLSINK_ENHANCEMENT
100   gboolean use_gapless;
101   gboolean got_eos_event;
102   gboolean USE_TBM;
103   GstCaps *caps;
104   guint rotate_angle;
105   guint display_geometry_method;
106   guint orientation;
107   guint flip;
108   gboolean visible;
109
110   GMutex gapless_lock;
111   GCond gapless_cond;
112 #endif
113 };
114
115 struct _GstWaylandSinkClass
116 {
117   GstVideoSinkClass parent;
118 };
119
120 GType
121 gst_wayland_sink_get_type (void)
122     G_GNUC_CONST;
123
124 G_END_DECLS
125 #endif /* __GST_WAYLAND_VIDEO_SINK_H__ */