gtkglsink: Port to GtkGstBaseWidget
[platform/upstream/gst-plugins-good.git] / ext / gtk / gstgtkglsink.h
1 /*
2  * GStreamer
3  * Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
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
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef __GST_GTK_GL_SINK_H__
22 #define __GST_GTK_GL_SINK_H__
23
24 #include <gtk/gtk.h>
25 #include <gst/gst.h>
26 #include <gst/video/gstvideosink.h>
27 #include <gst/video/video.h>
28 #include <gst/gl/gl.h>
29
30 typedef struct _GstGtkGLSink GstGtkGLSink;
31 typedef struct _GstGtkGLSinkClass GstGtkGLSinkClass;
32
33 #include <gtkgstglwidget.h>
34
35 G_BEGIN_DECLS
36
37 GType gst_gtk_gl_sink_get_type (void);
38 #define GST_TYPE_GTK_GL_SINK            (gst_gtk_gl_sink_get_type())
39 #define GST_GTK_GL_SINK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GTK_GL_SINK,GstGtkGLSink))
40 #define GST_GTK_GL_SINK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GTK_GL_SINK,GstGtkGLSinkClass))
41 #define GST_IS_GTK_GL_SINK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GTK_GL_SINK))
42 #define GST_IS_GTK_GL_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GTK_GL_SINK))
43 #define GST_GTK_GL_SINK_CAST(obj)       ((GstGtkGLSink*)(obj))
44
45 /**
46  * GstGtkGLSink:
47  *
48  * Opaque #GstGtkGLSink object
49  */
50 struct _GstGtkGLSink
51 {
52   /* <private> */
53   GstVideoSink          parent;
54
55   GtkGstBaseWidget     *widget;
56
57   GstVideoInfo          v_info;
58   GstBufferPool        *pool;
59
60   GstGLDisplay         *display;
61   GstGLContext         *context;
62   GstGLContext         *gtk_context;
63
64   GstGLUpload          *upload;
65   GstBuffer            *uploaded_buffer;
66
67   /* properties */
68   gboolean              force_aspect_ratio;
69   GBinding             *bind_force_aspect_ratio;
70
71   gint                  par_n;
72   gint                  par_d;
73   GBinding             *bind_pixel_aspect_ratio;
74
75   gboolean              ignore_alpha;
76   GBinding             *bind_ignore_alpha;
77 };
78
79 /**
80  * GstGtkGLSinkClass:
81  *
82  * The #GstGtkGLSinkClass struct only contains private data
83  */
84 struct _GstGtkGLSinkClass
85 {
86   /* <private> */
87   GstVideoSinkClass object_class;
88 };
89
90 GstGtkGLSink *    gst_gtk_gl_sink_new (void);
91
92 G_END_DECLS
93
94 #endif /* __GST_GTK_GL_SINK_H__ */