summaryrefslogtreecommitdiffstats
path: root/gst/virtualdub/gstvirtualdub.c
diff options
context:
space:
mode:
authorJeremy Simon <jsimon13@yahoo.fr>2002-07-09 19:21:29 +0000
committerJeremy Simon <jsimon13@yahoo.fr>2002-07-09 19:21:29 +0000
commitb8218226914cbbd4e5c66187ffc0bbb305e92dc5 (patch)
tree5b5ac63710012400318579fd5ec1c48d10d954c9 /gst/virtualdub/gstvirtualdub.c
parent2b60d602862446df94bf763a8feda3e4de6f2b84 (diff)
downloadgst-plugins-bad-b8218226914cbbd4e5c66187ffc0bbb305e92dc5.tar.gz
gst-plugins-bad-b8218226914cbbd4e5c66187ffc0bbb305e92dc5.tar.bz2
gst-plugins-bad-b8218226914cbbd4e5c66187ffc0bbb305e92dc5.zip
xsharpen video filter from Virtualdub
Original commit message from CVS: xsharpen video filter from Virtualdub
Diffstat (limited to 'gst/virtualdub/gstvirtualdub.c')
-rw-r--r--gst/virtualdub/gstvirtualdub.c122
1 files changed, 122 insertions, 0 deletions
diff --git a/gst/virtualdub/gstvirtualdub.c b/gst/virtualdub/gstvirtualdub.c
new file mode 100644
index 00000000..d83ccd2c
--- /dev/null
+++ b/gst/virtualdub/gstvirtualdub.c
@@ -0,0 +1,122 @@
+/* GStreamer
+ * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
+ *
+ * EffecTV:
+ * Copyright (C) 2001 FUKUCHI Kentarou
+ *
+ * EffecTV is free software. We release this product under the terms of the
+ * GNU General Public License version 2. The license is included in the file
+ * COPYING.
+ *
+ * This program 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 General Public License for more details.
+ */
+
+#include <string.h>
+#include <gst/gst.h>
+#include "gstvirtualdub.h"
+
+
+struct _elements_entry {
+ gchar *name;
+ GType (*type) (void);
+ GstElementDetails *details;
+ gboolean (*factoryinit) (GstElementFactory *factory);
+};
+
+static struct _elements_entry _elements[] = {
+ { "xsharpen", gst_xsharpen_get_type, &gst_xsharpen_details, NULL },
+ { NULL, 0 },
+};
+
+
+GstPadTemplate*
+gst_virtualdub_src_factory (void)
+{
+ static GstPadTemplate *templ = NULL;
+ if (!templ) {
+ templ = GST_PAD_TEMPLATE_NEW (
+ "src",
+ GST_PAD_SRC,
+ GST_PAD_ALWAYS,
+ GST_CAPS_NEW (
+ "virtualdub_src",
+ "video/raw",
+ "format", GST_PROPS_FOURCC (GST_STR_FOURCC ("RGB ")),
+ "bpp", GST_PROPS_INT (32),
+ "depth", GST_PROPS_INT (32),
+ "endianness", GST_PROPS_INT (G_BYTE_ORDER),
+ "red_mask", GST_PROPS_INT (0xff0000),
+ "green_mask", GST_PROPS_INT (0xff00),
+ "blue_mask", GST_PROPS_INT (0xff),
+ "width", GST_PROPS_INT_RANGE (16, 4096),
+ "height", GST_PROPS_INT_RANGE (16, 4096)
+ )
+ );
+ }
+ return templ;
+}
+
+GstPadTemplate*
+gst_virtualdub_sink_factory (void)
+{
+ static GstPadTemplate *templ = NULL;
+ if (!templ) {
+ templ = GST_PAD_TEMPLATE_NEW (
+ "sink",
+ GST_PAD_SINK,
+ GST_PAD_ALWAYS,
+ GST_CAPS_NEW (
+ "virtualdub_sink",
+ "video/raw",
+ "format", GST_PROPS_FOURCC (GST_STR_FOURCC ("RGB ")),
+ "bpp", GST_PROPS_INT (32),
+ "depth", GST_PROPS_INT (32),
+ "endianness", GST_PROPS_INT (G_BYTE_ORDER),
+ "red_mask", GST_PROPS_INT (0xff0000),
+ "green_mask", GST_PROPS_INT (0xff00),
+ "blue_mask", GST_PROPS_INT (0xff),
+ "width", GST_PROPS_INT_RANGE (16, 4096),
+ "height", GST_PROPS_INT_RANGE (16, 4096)
+ )
+ );
+ }
+ return templ;
+}
+
+static gboolean
+plugin_init (GModule * module, GstPlugin * plugin)
+{
+ GstElementFactory *factory;
+ gint i = 0;
+
+ while (_elements[i].name) {
+ factory = gst_element_factory_new (_elements[i].name,
+ (_elements[i].type) (),
+ _elements[i].details);
+
+ if (!factory) {
+ g_warning ("gst_virtualdub_new failed for `%s'",
+ _elements[i].name);
+ continue;
+ }
+ gst_element_factory_add_pad_template (factory, gst_virtualdub_src_factory ());
+ gst_element_factory_add_pad_template (factory, gst_virtualdub_sink_factory ());
+
+ gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
+ if (_elements[i].factoryinit) {
+ _elements[i].factoryinit (factory);
+ }
+ i++;
+ }
+
+ return TRUE;
+}
+
+GstPluginDesc plugin_desc = {
+ GST_VERSION_MAJOR,
+ GST_VERSION_MINOR,
+ "virtualdub",
+ plugin_init
+};