summaryrefslogtreecommitdiff
path: root/ext/xlib/gstcairoglxsink.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/xlib/gstcairoglxsink.h')
-rw-r--r--ext/xlib/gstcairoglxsink.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/ext/xlib/gstcairoglxsink.h b/ext/xlib/gstcairoglxsink.h
new file mode 100644
index 0000000..f96e63d
--- /dev/null
+++ b/ext/xlib/gstcairoglxsink.h
@@ -0,0 +1,67 @@
+/* GStreamer
+ * Copyright (C) 2009 Benjamin Otte <otte@gnome.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GST_CAIRO_GLX_SINK_H__
+#define __GST_CAIRO_GLX_SINK_H__
+
+#include <gst/gst.h>
+#include <gst/cairo/gstcairo.h>
+#include <gst/video/gstvideosink.h>
+
+#include <X11/Xlib.h>
+
+G_BEGIN_DECLS
+
+#define GST_TYPE_CAIRO_GLX_SINK (gst_cairo_glx_sink_get_type())
+#define GST_CAIRO_GLX_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_CAIRO_GLX_SINK,GstCairoGLXSink))
+#define GST_CAIRO_GLX_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_CAIRO_GLX_SINK,GstCairoGLXSinkClass))
+#define GST_IS_CAIRO_GLX_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_CAIRO_GLX_SINK))
+#define GST_IS_CAIRO_GLX_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CAIRO_GLX_SINK))
+
+typedef struct _GstCairoGLXSink GstCairoGLXSink;
+typedef struct _GstCairoGLXSinkClass GstCairoGLXSinkClass;
+
+/**
+ * GstCairoGLXSink:
+ *
+ * Opaque object data structure.
+ */
+struct _GstCairoGLXSink {
+ GstVideoSink sink;
+
+ Display * display; /* the Display in use */
+ Window window; /* window we draw onto */
+ cairo_device_t * device; /* device used for drawing */
+ cairo_surface_t * surface; /* surface used for drawing or NULL */
+ GMainContext * context; /* context of event thread */
+ GMainLoop * loop; /* loop running context in event thread */
+ GstCairoFormat * format; /* negotiated format on the sink side */
+ GThread * thread; /* the event thread */
+};
+
+struct _GstCairoGLXSinkClass
+{
+ GstVideoSinkClass sink_class;
+};
+
+GType gst_cairo_glx_sink_get_type (void);
+
+G_END_DECLS
+
+#endif /* __GST_CAIRO_GLX_SINK_H__ */