2008-07-31 15:48:04 +00:00
|
|
|
/*
|
2008-05-19 16:57:39 +00:00
|
|
|
* GStreamer
|
2008-09-20 13:44:24 +00:00
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
|
|
|
* Copyright (C) 2005,2006,2007 David A. Schleef <ds@schleef.org>
|
2008-05-19 16:57:39 +00:00
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
2008-09-20 13:44:24 +00:00
|
|
|
* Copyright (C) 2008 Filippo Argiolas <filippo.argiolas@gmail.com>
|
2008-05-19 16:57:39 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-11-08 11:53:56 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-05-19 16:57:39 +00:00
|
|
|
*/
|
|
|
|
|
2008-09-29 21:45:10 +00:00
|
|
|
/**
|
|
|
|
* SECTION:plugin-opengl
|
|
|
|
*
|
|
|
|
* Cross-platform OpenGL plugin.
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Debugging</title>
|
|
|
|
* </refsect2>
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Examples</title>
|
|
|
|
* |[
|
|
|
|
* gst-launch-0.10 --gst-debug=gldisplay:3 videotestsrc ! glimagesink
|
|
|
|
* ]| A debugging pipeline.
|
|
|
|
|[
|
|
|
|
* GST_GL_SHADER_DEBUG=1 gst-launch-0.10 videotestsrc ! glimagesink
|
|
|
|
* ]| A debugging pipelines related to shaders.
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-03-15 13:48:19 +00:00
|
|
|
#include "gstglimagesink.h"
|
|
|
|
|
2008-06-07 00:01:18 +00:00
|
|
|
#include "gstglfiltercube.h"
|
2009-11-21 20:40:14 +00:00
|
|
|
#include "gstgleffects.h"
|
2014-02-10 20:24:40 +00:00
|
|
|
#include "gstglcolorscale.h"
|
2009-03-15 13:48:19 +00:00
|
|
|
|
2013-01-09 14:13:23 +00:00
|
|
|
#if GST_GL_HAVE_OPENGL
|
2009-03-15 13:48:19 +00:00
|
|
|
#include "gstgltestsrc.h"
|
2008-07-18 08:49:34 +00:00
|
|
|
#include "gstglfilterlaplacian.h"
|
2008-09-21 17:26:37 +00:00
|
|
|
#include "gstglfilterglass.h"
|
2008-06-08 02:19:43 +00:00
|
|
|
#include "gstglfilterapp.h"
|
2014-03-16 14:06:37 +00:00
|
|
|
#include "gstglfilterblur.h"
|
2010-04-26 12:32:28 +00:00
|
|
|
#include "gstglfilterreflectedscreen.h"
|
2011-11-17 16:36:44 +00:00
|
|
|
#include "gstglfiltershader.h"
|
2014-03-16 14:06:37 +00:00
|
|
|
#include "gstglfiltersobel.h"
|
2009-06-24 23:30:44 +00:00
|
|
|
#include "gstgldeinterlace.h"
|
2009-10-22 23:11:27 +00:00
|
|
|
#include "gstglmosaic.h"
|
2013-10-23 10:46:04 +00:00
|
|
|
#include "gstglvideomixer.h"
|
2012-12-06 07:40:26 +00:00
|
|
|
#if HAVE_PNG
|
2011-11-18 10:52:10 +00:00
|
|
|
#include "gstgldifferencematte.h"
|
|
|
|
#include "gstglbumper.h"
|
2012-12-06 07:40:26 +00:00
|
|
|
#if HAVE_JPEG
|
2011-11-18 10:52:10 +00:00
|
|
|
#include "gstgloverlay.h"
|
2012-12-06 07:40:26 +00:00
|
|
|
#endif /* HAVE_JPEG */
|
|
|
|
#endif /* HAVE_PNG */
|
2013-01-09 14:13:23 +00:00
|
|
|
#endif /* GST_GL_HAVE_OPENGL */
|
2008-06-11 23:12:53 +00:00
|
|
|
|
2014-03-19 13:48:10 +00:00
|
|
|
#ifdef USE_EGL_RPI
|
|
|
|
#include <bcm_host.h>
|
|
|
|
#endif
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_gl_gstgl_debug
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
|
|
|
|
|
|
|
/* Register filters that make up the gstgl plugin */
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2008-05-18 16:04:56 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_gl_gstgl_debug, "gstopengl", 0, "gstopengl");
|
2008-07-31 15:48:04 +00:00
|
|
|
|
2013-08-30 14:53:41 +00:00
|
|
|
#ifdef USE_EGL_RPI
|
|
|
|
GST_DEBUG ("Initialize BCM host");
|
|
|
|
bcm_host_init ();
|
|
|
|
#endif
|
|
|
|
|
2009-03-15 13:48:19 +00:00
|
|
|
if (!gst_element_register (plugin, "glimagesink",
|
2013-07-11 14:05:48 +00:00
|
|
|
GST_RANK_MARGINAL, GST_TYPE_GLIMAGE_SINK)) {
|
2008-05-18 11:12:46 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-06-07 00:01:18 +00:00
|
|
|
if (!gst_element_register (plugin, "glfiltercube",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_CUBE)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-03-15 13:48:19 +00:00
|
|
|
|
2009-11-21 20:40:14 +00:00
|
|
|
if (!gst_element_register (plugin, "gleffects",
|
|
|
|
GST_RANK_NONE, gst_gl_effects_get_type ())) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-10 20:24:40 +00:00
|
|
|
|
|
|
|
if (!gst_element_register (plugin, "glcolorscale",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_COLORSCALE)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-01-09 14:13:23 +00:00
|
|
|
#if GST_GL_HAVE_OPENGL
|
2009-03-15 13:48:19 +00:00
|
|
|
if (!gst_element_register (plugin, "gltestsrc",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_TEST_SRC)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-07-31 15:48:04 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterblur",
|
2009-02-11 06:39:14 +00:00
|
|
|
GST_RANK_NONE, gst_gl_filterblur_get_type ())) {
|
2008-07-31 15:48:04 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-17 16:36:44 +00:00
|
|
|
if (!gst_element_register (plugin, "glshader",
|
|
|
|
GST_RANK_NONE, gst_gl_filtershader_get_type ())) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-09-23 08:37:58 +00:00
|
|
|
if (!gst_element_register (plugin, "glfiltersobel",
|
2009-02-11 06:39:14 +00:00
|
|
|
GST_RANK_NONE, gst_gl_filtersobel_get_type ())) {
|
2008-09-23 08:37:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-07-18 08:49:34 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterlaplacian",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_LAPLACIAN)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-09-21 17:26:37 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterglass",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_GLASS)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-06-08 02:19:43 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterapp",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_APP)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-04-26 12:32:28 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterreflectedscreen",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_REFLECTED_SCREEN)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-06-24 23:30:44 +00:00
|
|
|
if (!gst_element_register (plugin, "gldeinterlace",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_DEINTERLACE)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-10-22 23:11:27 +00:00
|
|
|
if (!gst_element_register (plugin, "glmosaic",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_MOSAIC)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-10-23 10:46:04 +00:00
|
|
|
|
|
|
|
if (!gst_element_register (plugin, "glvideomixer",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_VIDEO_MIXER)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-12-06 07:40:26 +00:00
|
|
|
#if HAVE_PNG
|
2011-11-18 07:08:18 +00:00
|
|
|
if (!gst_element_register (plugin, "gldifferencematte",
|
|
|
|
GST_RANK_NONE, gst_gl_differencematte_get_type ())) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gst_element_register (plugin, "glbumper",
|
|
|
|
GST_RANK_NONE, gst_gl_bumper_get_type ())) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-12-06 07:40:26 +00:00
|
|
|
#if HAVE_JPEG
|
2011-11-18 07:08:18 +00:00
|
|
|
if (!gst_element_register (plugin, "gloverlay",
|
|
|
|
GST_RANK_NONE, gst_gl_overlay_get_type ())) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-12-06 07:40:26 +00:00
|
|
|
#endif /* HAVE_JPEG */
|
|
|
|
#endif /* HAVE_PNG */
|
2013-01-09 14:13:23 +00:00
|
|
|
#endif /* GST_GL_HAVE_OPENGL */
|
2008-06-10 22:59:57 +00:00
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-08-10 06:41:12 +00:00
|
|
|
opengl,
|
2008-05-18 11:12:46 +00:00
|
|
|
"OpenGL plugin",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|