Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / ext / gdk_pixbuf / gstgdkpixbufsink.h
1 /* GStreamer GdkPixbuf sink
2  * Copyright (C) 2006-2008 Tim-Philipp Müller <tim centricular net>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef GST_GDK_PIXBUF_SINK_H
21 #define GST_GDK_PIXBUF_SINK_H
22
23 #include <gst/gst.h>
24
25 #include <gst/video/gstvideosink.h>
26
27 #include <gdk-pixbuf/gdk-pixbuf.h>
28
29 #define GST_TYPE_GDK_PIXBUF_SINK            (gst_gdk_pixbuf_sink_get_type())
30 #define GST_GDK_PIXBUF_SINK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GDK_PIXBUF_SINK,GstGdkPixbufSink))
31 #define GST_GDK_PIXBUF_SINK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GDK_PIXBUF_SINK,GstGdkPixbufSinkClass))
32 #define GST_IS_GDK_PIXBUF_SINK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GDK_PIXBUF_SINK))
33 #define GST_IS_GDK_PIXBUF_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GDK_PIXBUF_SINK))
34
35 typedef struct _GstGdkPixbufSink       GstGdkPixbufSink;
36 typedef struct _GstGdkPixbufSinkClass  GstGdkPixbufSinkClass;
37
38 /**
39  * GstGdkPixbufSink:
40  *
41  * Opaque element structure.
42  */
43 struct _GstGdkPixbufSink
44 {
45   GstVideoSink  basesink;
46
47   /*< private >*/
48
49   /* current caps */
50   gint         width;
51   gint         height;
52   gint         rowstride;
53   gint         par_n;
54   gint         par_d;
55   gboolean     has_alpha;
56
57   /* properties */
58   gboolean     post_messages;
59   GdkPixbuf  * last_pixbuf;
60 };
61
62 /**
63  * GstGdkPixbufSinkClass:
64  *
65  * Opaque element class structure.
66  */
67 struct _GstGdkPixbufSinkClass 
68 {
69   GstVideoSinkClass  basesinkclass;
70 };
71
72 GType   gst_gdk_pixbuf_sink_get_type (void);
73
74 #endif /* GST_GDK_PIXBUF_SINK_H */
75