gtksinks: Remove undefined private structure
[platform/upstream/gst-plugins-good.git] / ext / gtk / gstgtksink.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_SINK_H__
22 #define __GST_GTK_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
29 typedef struct _GstGtkSink GstGtkSink;
30 typedef struct _GstGtkSinkClass GstGtkSinkClass;
31
32 #include <gtkgstwidget.h>
33
34 G_BEGIN_DECLS
35
36 GType gst_gtk_sink_get_type (void);
37 #define GST_TYPE_GTK_SINK            (gst_gtk_sink_get_type())
38 #define GST_GTK_SINK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GTK_SINK,GstGtkSink))
39 #define GST_GTK_SINK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GTK_SINK,GstGtkSinkClass))
40 #define GST_IS_GTK_SINK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GTK_SINK))
41 #define GST_IS_GTK_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GTK_SINK))
42 #define GST_GTK_SINK_CAST(obj)       ((GstGtkSink*)(obj))
43
44 /**
45  * GstGtkSink:
46  *
47  * Opaque #GstGtkSink object
48  */
49 struct _GstGtkSink
50 {
51   /* <private> */
52   GstVideoSink         parent;
53
54   GstVideoInfo         v_info;
55
56   GtkGstWidget        *widget;
57
58   /* properties */
59   gboolean             force_aspect_ratio;
60   GBinding             *bind_aspect_ratio;
61
62   gint                  par_n;
63   gint                  par_d;
64   GBinding             *bind_pixel_aspect_ratio;
65
66   gboolean              ignore_alpha;
67   GBinding             *bind_ignore_alpha;
68 };
69
70 /**
71  * GstGtkSinkClass:
72  *
73  * The #GstGtkSinkClass struct only contains private data
74  */
75 struct _GstGtkSinkClass
76 {
77   /* <private> */
78   GstVideoSinkClass object_class;
79 };
80
81 GstGtkSink *    gst_gtk_sink_new (void);
82
83 G_END_DECLS
84
85 #endif /* __GST_GTK_SINK_H__ */