summaryrefslogtreecommitdiff
path: root/cogl-gst/cogl-gst.h
diff options
context:
space:
mode:
authorPlamena Manolova <plamena.n.manolova@intel.com>2013-02-22 14:56:05 +0000
committerNeil Roberts <neil@linux.intel.com>2013-03-19 17:34:46 +0000
commitdfb94cf4b0b6b42d6465df362a0c0af780596890 (patch)
treed82d28b3f9e146808fab5e94afe5ac0b4d3b15a3 /cogl-gst/cogl-gst.h
parent576c7b55aa835448c977f1d79d128dffd40e7cd8 (diff)
downloadcogl-dfb94cf4b0b6b42d6465df362a0c0af780596890.tar.gz
Include CoglGst
CoglGst is a GStreamer integration library that facilitates video playback using the Cogl API. It works by retrieving each video frame from the GStreamer pipeline and attaching it to a Cogl pipeline in the form of a Cogl texture along with possible color model conversion shaders. The pipeline is then retrieved by the user during each draw. An example use of the CoglGst API is included in the examples directory. Reviewed-by: Neil Roberts <neil@linux.intel.com>
Diffstat (limited to 'cogl-gst/cogl-gst.h')
-rw-r--r--cogl-gst/cogl-gst.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/cogl-gst/cogl-gst.h b/cogl-gst/cogl-gst.h
new file mode 100644
index 00000000..655134ce
--- /dev/null
+++ b/cogl-gst/cogl-gst.h
@@ -0,0 +1,38 @@
+/*
+ * Cogl-GStreamer.
+ *
+ * GStreamer integration library for Cogl.
+ *
+ * cogl-gst.h - Top level header file
+ *
+ * Authored by Jonathan Matthew <jonathan@kaolin.wh9.net>,
+ * Chris Lord <chris@openedhand.com>
+ * Damien Lespiau <damien.lespiau@intel.com>
+ * Matthew Allum <mallum@openedhand.com>
+ * Plamena Manolova <plamena.n.manolova@intel.com>
+ *
+ * Copyright (C) 2007, 2008 OpenedHand
+ * Copyright (C) 2009, 2010, 2013 Intel Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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 __COGL_GST_H__
+#define __COGL_GST_H__
+
+#include <cogl-gst/cogl-gst-video-sink.h>
+
+#endif