gsttwirl: Adds new element twirl
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>
Wed, 2 Jun 2010 03:48:15 +0000 (00:48 -0300)
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>
Fri, 4 Jun 2010 18:31:21 +0000 (15:31 -0300)
Adds a new element to geometrictransform plugin: twirl

gst/geometrictransform/Makefile.am
gst/geometrictransform/gsttwirl.c [new file with mode: 0644]
gst/geometrictransform/gsttwirl.h [new file with mode: 0644]
gst/geometrictransform/plugin.c

index 6830977..53be430 100644 (file)
@@ -3,7 +3,8 @@ plugin_LTLIBRARIES = libgstgeometrictransform.la
 libgstgeometrictransform_la_SOURCES = plugin.c \
                                       gstgeometrictransform.c \
                                       gstcirclegeometrictransform.c \
-                                      gstpinch.c
+                                      gstpinch.c \
+                                      gsttwirl.c
 
 libgstgeometrictransform_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
                            $(GST_PLUGINS_BASE_CFLAGS)
@@ -13,4 +14,5 @@ libgstgeometrictransform_la_LIBTOOLFLAGS = --tag=disable-static
 
 noinst_HEADERS = gstgeometrictransform.h \
                  gstcirclegeometrictransform.h \
-                 gstpinch.h
+                 gstpinch.h \
+                 gsttwirl.h
diff --git a/gst/geometrictransform/gsttwirl.c b/gst/geometrictransform/gsttwirl.c
new file mode 100644 (file)
index 0000000..0d88b97
--- /dev/null
@@ -0,0 +1,200 @@
+/*
+ * GStreamer
+ * Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ * Alternatively, the contents of this file may be used under the
+ * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
+ * which case the following provisions apply instead of the ones
+ * mentioned above:
+ *
+ * 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.
+ */
+
+/*
+ * Thanks to Jerry Huxtable <http://www.jhlabs.com> work on its java
+ * image editor and filters. The algorithms here were extracted from
+ * his code.
+ */
+
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <gst/gst.h>
+#include <math.h>
+
+#include "gsttwirl.h"
+
+GST_DEBUG_CATEGORY_STATIC (gst_twirl_debug);
+#define GST_CAT_DEFAULT gst_twirl_debug
+
+enum
+{
+  PROP_0,
+  PROP_ANGLE
+};
+
+#define DEFAULT_ANGLE 0
+
+GST_BOILERPLATE (GstTwirl, gst_twirl, GstCircleGeometricTransform,
+    GST_TYPE_CIRCLE_GEOMETRIC_TRANSFORM);
+
+static void
+gst_twirl_set_property (GObject * object, guint prop_id, const GValue * value,
+    GParamSpec * pspec)
+{
+  GstTwirl *twirl;
+
+  twirl = GST_TWIRL_CAST (object);
+
+  switch (prop_id) {
+    case PROP_ANGLE:
+      twirl->angle = g_value_get_double (value);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+  }
+}
+
+static void
+gst_twirl_get_property (GObject * object, guint prop_id,
+    GValue * value, GParamSpec * pspec)
+{
+  GstTwirl *twirl;
+
+  twirl = GST_TWIRL_CAST (object);
+
+  switch (prop_id) {
+    case PROP_ANGLE:
+      g_value_set_double (value, twirl->angle);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+  }
+}
+
+/* Clean up */
+static void
+gst_twirl_finalize (GObject * obj)
+{
+  G_OBJECT_CLASS (parent_class)->finalize (obj);
+}
+
+/* GObject vmethod implementations */
+
+static void
+gst_twirl_base_init (gpointer gclass)
+{
+  GstElementClass *element_class = GST_ELEMENT_CLASS (gclass);
+
+  gst_element_class_set_details_simple (element_class,
+      "twirl",
+      "Transform/Effect/Video",
+      "Applies 'twirl' geometric transform to the image",
+      "Thiago Santos<thiago.sousa.santos@collabora.co.uk>");
+}
+
+static gboolean
+twirl_map (GstGeometricTransform * gt, gint x, gint y, gdouble * in_x,
+    gdouble * in_y)
+{
+  GstCircleGeometricTransform *cgt = GST_CIRCLE_GEOMETRIC_TRANSFORM_CAST (gt);
+  GstTwirl *twirl = GST_TWIRL_CAST (gt);
+  gdouble distance;
+  gdouble dx, dy;
+
+  dx = x - cgt->precalc_x_center;
+  dy = y - cgt->precalc_y_center;
+  distance = dx * dx + dy * dy;
+
+  if (distance > cgt->precalc_radius2) {
+    *in_x = x;
+    *in_y = y;
+  } else {
+    gdouble d = sqrt (distance);
+    gdouble a = atan2 (dy, dx) + twirl->angle * (cgt->radius - d) / cgt->radius;
+
+    *in_x = cgt->precalc_x_center + d * cos (a);
+    *in_y = cgt->precalc_y_center + d * sin (a);
+
+    *in_x = CLAMP (*in_x, 0, gt->width - 1);
+    *in_y = CLAMP (*in_y, 0, gt->height - 1);
+  }
+
+  GST_DEBUG_OBJECT (twirl, "Inversely mapped %d %d into %lf %lf",
+      x, y, *in_x, *in_y);
+
+  return TRUE;
+}
+
+static void
+gst_twirl_class_init (GstTwirlClass * klass)
+{
+  GObjectClass *gobject_class;
+  GstGeometricTransformClass *gstgt_class;
+
+  gobject_class = (GObjectClass *) klass;
+  gstgt_class = (GstGeometricTransformClass *) klass;
+
+  parent_class = g_type_class_peek_parent (klass);
+
+  gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_twirl_finalize);
+  gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_twirl_set_property);
+  gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_twirl_get_property);
+
+  g_object_class_install_property (gobject_class, PROP_ANGLE,
+      g_param_spec_double ("angle", "angle",
+          "angle in radians of the twirl effect",
+          -G_MAXDOUBLE, G_MAXDOUBLE, DEFAULT_ANGLE,
+          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+  gstgt_class->map_func = twirl_map;
+}
+
+static void
+gst_twirl_init (GstTwirl * filter, GstTwirlClass * gclass)
+{
+  filter->angle = DEFAULT_ANGLE;
+}
+
+gboolean
+gst_twirl_plugin_init (GstPlugin * plugin)
+{
+  GST_DEBUG_CATEGORY_INIT (gst_twirl_debug, "twirl", 0, "twirl");
+
+  return gst_element_register (plugin, "twirl", GST_RANK_NONE, GST_TYPE_TWIRL);
+}
diff --git a/gst/geometrictransform/gsttwirl.h b/gst/geometrictransform/gsttwirl.h
new file mode 100644 (file)
index 0000000..5cfb8f1
--- /dev/null
@@ -0,0 +1,87 @@
+/*
+ * GStreamer
+ * Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ * Alternatively, the contents of this file may be used under the
+ * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
+ * which case the following provisions apply instead of the ones
+ * mentioned above:
+ *
+ * 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_TWIRL_H__
+#define __GST_TWIRL_H__
+
+#include <gst/gst.h>
+#include "gstcirclegeometrictransform.h"
+
+G_BEGIN_DECLS
+
+/* #defines don't like whitespacey bits */
+#define GST_TYPE_TWIRL \
+  (gst_twirl_get_type())
+#define GST_TWIRL(obj) \
+  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TWIRL,GstTwirl))
+#define GST_TWIRL_CAST(obj) \
+  ((GstTwirl *)(obj))
+#define GST_TWIRL_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TWIRL,GstTwirlClass))
+#define GST_IS_TWIRL(obj) \
+  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TWIRL))
+#define GST_IS_TWIRL_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TWIRL))
+
+typedef struct _GstTwirl      GstTwirl;
+typedef struct _GstTwirlClass GstTwirlClass;
+
+struct _GstTwirl
+{
+  GstCircleGeometricTransform element;
+
+  gdouble angle;
+};
+
+struct _GstTwirlClass 
+{
+  GstCircleGeometricTransformClass parent_class;
+};
+
+GType gst_twirl_get_type (void);
+
+gboolean gst_twirl_plugin_init (GstPlugin * plugin);
+
+G_END_DECLS
+
+#endif /* __GST_TWIRL_H__ */
index 8f4a040..19776fd 100644 (file)
@@ -22,6 +22,7 @@
 #endif
 
 #include "gstpinch.h"
+#include "gsttwirl.h"
 
 static gboolean
 plugin_init (GstPlugin * plugin)
@@ -29,6 +30,9 @@ plugin_init (GstPlugin * plugin)
   if (!gst_pinch_plugin_init (plugin))
     return FALSE;
 
+  if (!gst_twirl_plugin_init (plugin))
+    return FALSE;
+
   return TRUE;
 }