2008-05-19 16:57:39 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2008-06-11 18:33:53 +00:00
|
|
|
#include "gstgltestsrc.h"
|
2008-05-18 11:12:46 +00:00
|
|
|
#include "gstglgraphicmaker.h"
|
2008-06-07 00:01:18 +00:00
|
|
|
#include "gstglfiltercube.h"
|
2008-06-08 02:19:43 +00:00
|
|
|
#include "gstglfilterapp.h"
|
2008-05-18 11:12:46 +00:00
|
|
|
#include "gstglvideomaker.h"
|
|
|
|
#include "gstglimagesink.h"
|
2008-06-10 22:59:57 +00:00
|
|
|
#include "gstglcolorscale.h"
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-06-11 23:12:53 +00:00
|
|
|
GType gst_gl_filter_app_get_type (void);
|
|
|
|
GType gst_gl_filter_cube_get_type (void);
|
|
|
|
|
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-05-18 11:12:46 +00:00
|
|
|
|
2008-06-11 18:33:53 +00:00
|
|
|
if (!gst_element_register (plugin, "gltestsrc",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_TEST_SRC)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
if (!gst_element_register (plugin, "glgraphicmaker",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_GRAPHICMAKER)) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-06-08 02:19:43 +00:00
|
|
|
if (!gst_element_register (plugin, "glfilterapp",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_FILTER_APP)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-06-07 00:01:18 +00:00
|
|
|
if (!gst_element_register (plugin, "glvideomaker",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_VIDEOMAKER)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
if (!gst_element_register (plugin, "glimagesink",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GLIMAGE_SINK)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-06-10 22:59:57 +00:00
|
|
|
if (!gst_element_register (plugin, "glcolorscale",
|
|
|
|
GST_RANK_NONE, GST_TYPE_GL_COLORSCALE)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2008-05-18 16:04:56 +00:00
|
|
|
"opengl",
|
2008-05-18 11:12:46 +00:00
|
|
|
"OpenGL plugin",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|