audiovisualizers: add a spacescope element
authorStefan Kost <ensonic@users.sf.net>
Sat, 4 Jun 2011 12:52:44 +0000 (15:52 +0300)
committerStefan Kost <ensonic@users.sf.net>
Mon, 6 Jun 2011 12:25:14 +0000 (15:25 +0300)
Add another element that maps left/right channel to x,y coordinates.

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

index a7bd6000eeab9ae56663249b37d6958bf9e2e637..811c7d831f6bd28233a9f1c9873d1fe3a0d58043 100644 (file)
@@ -2,6 +2,7 @@ plugin_LTLIBRARIES = libgstaudiovisualizers.la
 
 libgstaudiovisualizers_la_SOURCES = plugin.c \
     gstbaseaudiovisualizer.c gstbaseaudiovisualizer.h \
+    gstspacescope.c gstspacescope.h \
     gstspectrascope.c gstspectrascope.h \
     gstsynaescope.c gstsynaescope.h \
     gstwavescope.c gstwavescope.h
@@ -17,7 +18,7 @@ libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 libgstaudiovisualizers_la_LIBTOOLFLAGS = --tag=disable-static
 
 noinst_HEADERS = gstbaseaudiovisualizer.h \
-       gstspectrascope.h gstsynaescope.h gstwavescope.h
+       gstspacescope.h gstspectrascope.h gstsynaescope.h gstwavescope.h
 
 Android.mk: Makefile.am $(BUILT_SOURCES)
        androgenizer \
diff --git a/gst/audiovisualizers/gstspacescope.c b/gst/audiovisualizers/gstspacescope.c
new file mode 100644 (file)
index 0000000..b1405e5
--- /dev/null
@@ -0,0 +1,131 @@
+/* GStreamer
+ * Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
+ *
+ * gstspacescope.c: simple stereo visualizer
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+/**
+ * SECTION:element-spacescope
+ * @see_also: goom
+ *
+ * Spacescope is a simple audio visualisation element. It maps the left and
+ * right channel to x and y coordinates.
+ *
+ * <refsect2>
+ * <title>Example launch line</title>
+ * |[
+ * gst-launch audiotestsrc ! audioconvert ! spacescope ! ximagesink
+ * ]|
+ * </refsect2>
+ */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "gstspacescope.h"
+
+static GstStaticPadTemplate gst_space_scope_src_template =
+GST_STATIC_PAD_TEMPLATE ("src",
+    GST_PAD_SRC,
+    GST_PAD_ALWAYS,
+    GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB_HOST_ENDIAN)
+    );
+
+static GstStaticPadTemplate gst_space_scope_sink_template =
+GST_STATIC_PAD_TEMPLATE ("sink",
+    GST_PAD_SINK,
+    GST_PAD_ALWAYS,
+    GST_STATIC_CAPS (GST_AUDIO_INT_STANDARD_PAD_TEMPLATE_CAPS)
+    );
+
+
+GST_DEBUG_CATEGORY_STATIC (space_scope_debug);
+#define GST_CAT_DEFAULT space_scope_debug
+
+static gboolean gst_space_scope_setup (GstBaseAudioVisualizer * scope);
+static gboolean gst_space_scope_render (GstBaseAudioVisualizer * scope,
+    GstBuffer * audio, GstBuffer * video);
+
+
+GST_BOILERPLATE (GstSpaceScope, gst_space_scope, GstBaseAudioVisualizer,
+    GST_TYPE_BASE_AUDIO_VISUALIZER);
+
+static void
+gst_space_scope_base_init (gpointer g_class)
+{
+  GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
+
+  gst_element_class_set_details_simple (element_class, "Stereo visualizer",
+      "Visualization",
+      "Simple stereo visualizer", "Stefan Kost <ensonic@users.sf.net>");
+
+  gst_element_class_add_pad_template (element_class,
+      gst_static_pad_template_get (&gst_space_scope_src_template));
+  gst_element_class_add_pad_template (element_class,
+      gst_static_pad_template_get (&gst_space_scope_sink_template));
+}
+
+static void
+gst_space_scope_class_init (GstSpaceScopeClass * g_class)
+{
+  /*GObjectClass *gobject_class = (GObjectClass *) g_class; */
+  GstBaseAudioVisualizerClass *scope_class =
+      (GstBaseAudioVisualizerClass *) g_class;
+
+  scope_class->render = GST_DEBUG_FUNCPTR (gst_space_scope_render);
+}
+
+static void
+gst_space_scope_init (GstSpaceScope * scope, GstSpaceScopeClass * g_class)
+{
+  /* do nothing */
+}
+
+static gboolean
+gst_space_scope_render (GstBaseAudioVisualizer * scope, GstBuffer * audio,
+    GstBuffer * video)
+{
+  guint32 *vdata = (guint32 *) GST_BUFFER_DATA (video);
+  gint16 *adata = (gint16 *) GST_BUFFER_DATA (audio);
+  guint i, s, x, y, off, ox, oy;
+  guint num_samples;
+  gfloat dx, dy;
+  guint w = scope->width;
+
+  /* draw dots 1st channel x, 2nd channel y */
+  num_samples = GST_BUFFER_SIZE (audio) / (scope->channels * sizeof (gint16));
+  dx = scope->width / 65536.0;
+  ox = scope->width / 2;
+  dy = scope->height / 65536.0;
+  oy = scope->height / 2;
+  s = 0;
+  for (i = 0; i < num_samples; i++) {
+    x = (guint) (ox + (gfloat) adata[s++] * dx);
+    y = (guint) (oy + (gfloat) adata[s++] * dy);
+    off = (y * w) + x;
+    vdata[off] = 0x00FFFFFF;
+  }
+  return TRUE;
+}
+
+gboolean
+gst_space_scope_plugin_init (GstPlugin * plugin)
+{
+  GST_DEBUG_CATEGORY_INIT (space_scope_debug, "spacescope", 0, "spacescope");
+
+  return gst_element_register (plugin, "spacescope", GST_RANK_NONE,
+      GST_TYPE_SPACE_SCOPE);
+}
diff --git a/gst/audiovisualizers/gstspacescope.h b/gst/audiovisualizers/gstspacescope.h
new file mode 100644 (file)
index 0000000..0beae5a
--- /dev/null
@@ -0,0 +1,50 @@
+/* GStreamer
+ * Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
+ *
+ * gstspacescope.h: simple stereo visualizer
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+
+#ifndef __GST_SPACE_SCOPE_H__
+#define __GST_SPACE_SCOPE_H__
+
+#include "gstbaseaudiovisualizer.h"
+
+G_BEGIN_DECLS
+#define GST_TYPE_SPACE_SCOPE            (gst_space_scope_get_type())
+#define GST_SPACE_SCOPE(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SPACE_SCOPE,GstSpaceScope))
+#define GST_SPACE_SCOPE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SPACE_SCOPE,GstSpaceScopeClass))
+#define GST_IS_SPACE_SCOPE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SPACE_SCOPE))
+#define GST_IS_SPACE_SCOPE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SPACE_SCOPE))
+typedef struct _GstSpaceScope GstSpaceScope;
+typedef struct _GstSpaceScopeClass GstSpaceScopeClass;
+
+struct _GstSpaceScope
+{
+  GstBaseAudioVisualizer parent;
+};
+
+struct _GstSpaceScopeClass
+{
+  GstBaseAudioVisualizerClass parent_class;
+};
+
+GType gst_space_scope_get_type (void);
+gboolean gst_space_scope_plugin_init (GstPlugin * plugin);
+
+G_END_DECLS
+#endif /* __GST_SPACE_SCOPE_H__ */
\ No newline at end of file
index 42ac8a1b70c821651d654d7de61527b94e1d2816..4130f9725c9b5d215bd3b1fdfb5b531e9f8a7bba 100644 (file)
@@ -24,6 +24,7 @@
 #include <gst/gst.h>
 #include <gst/controller/gstcontroller.h>
 
+#include "gstspacescope.h"
 #include "gstspectrascope.h"
 #include "gstsynaescope.h"
 #include "gstwavescope.h"
@@ -36,6 +37,7 @@ plugin_init (GstPlugin * plugin)
   /* initialize gst controller library */
   gst_controller_init (NULL, NULL);
 
+  res &= gst_space_scope_plugin_init (plugin);
   res &= gst_spectra_scope_plugin_init (plugin);
   res &= gst_synae_scope_plugin_init (plugin);
   res &= gst_wave_scope_plugin_init (plugin);