summaryrefslogtreecommitdiffstats
path: root/gst/spectrum
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2006-06-16 09:49:07 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2006-06-16 09:49:07 +0000
commit2787798482ac6d03363b99a8325840d01ceb9d34 (patch)
treee2c4db69e6c46f24bac005e0aaaee993613431f9 /gst/spectrum
parent2d24aef0831e6ea0c7b27a98f56a5dd5abdcf6bf (diff)
gst/spectrum/: port to use message to get results, cleanly exit when closing the window
Original commit message from CVS: * gst/spectrum/demo-audiotest.c: (on_window_destroy), (draw_spectrum), (message_handler), (main): * gst/spectrum/demo-osssrc.c: (on_window_destroy), (draw_spectrum), (message_handler), (main): port to use message to get results, cleanly exit when closing the window * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init), (gst_spectrum_init), (gst_spectrum_dispose), (gst_spectrum_set_property), (gst_spectrum_get_property), (gst_spectrum_set_caps), (gst_spectrum_start), (gst_spectrum_message_new), (gst_spectrum_transform_ip): * gst/spectrum/gstspectrum.h: port to derive from basetransform and send results via messages (like level element)
Diffstat (limited to 'gst/spectrum')
-rw-r--r--gst/spectrum/gstspectrum.c289
-rw-r--r--gst/spectrum/gstspectrum.h23
2 files changed, 244 insertions, 68 deletions
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c
index c373cccd..b81da633 100644
--- a/gst/spectrum/gstspectrum.c
+++ b/gst/spectrum/gstspectrum.c
@@ -22,21 +22,41 @@
*
* <refsect2>
* The Spectrum element analyzes the frequency spectrum of an audio signal.
- * Analysis results are send as outgoing buffers.
- * The buffer contains a guint8 value per frequency band.
- * A value of 0 maps to the threshold property.
+ * If <link linkend="GstSpectrum--message">message property</link> is #TRUE it
+ * sends analysis results as application message named
+ * <classname>&quot;spectrum&quot;</classname> after each interval of time given
+ * by the <link linkend="GstSpectrum--interval">interval property</link>.
+ * The message's structure contains two fields:
+ * <itemizedlist>
+ * <listitem>
+ * <para>
+ * #GstClockTime
+ * <classname>&quot;endtime&quot;</classname>:
+ * the end time of the buffer that triggered the message
+ * </para>
+ * </listitem>
+ * <listitem>
+ * <para>
+ * #GstValueList of #guchar
+ * <classname>&quot;spectrum&quot;</classname>:
+ * the level for each frequency band. A value of 0 maps to the
+ * db value given by the
+ * <link linkend="GstSpectrum--threshold">threshold property.</link>.
+ * </para>
+ * </listitem>
*
- * It cannot be used with the gst-launch command in a sensible way. Instead the
- * included demo shows how to use it.
+ * This element cannot be used with the gst-launch command in a sensible way.
+ * The included demo shows how to use it in an application.
*
* Last reviewed on 2006-05-21 (0.10.3)
+ * </refsect2>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
-
+#include <gst/audio/audio.h>
#include "gstspectrum.h"
GST_DEBUG_CATEGORY_STATIC (gst_spectrum_debug);
@@ -65,33 +85,53 @@ static GstStaticPadTemplate src_template_factory =
GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
- GST_STATIC_CAPS_ANY);
+ GST_STATIC_CAPS ("audio/x-raw-int, "
+ "rate = (int) [ 1, MAX ], "
+ "channels = (int) [1, MAX], "
+ "endianness = (int) BYTE_ORDER, "
+ "width = (int) 16, " "depth = (int) 16, " "signed = (boolean) true")
+ );
-/* Spectrum signals and args */
-enum
-{
- /* FILL ME */
- LAST_SIGNAL
-};
+/*
+static GstStaticPadTemplate src_template_factory =
+GST_STATIC_PAD_TEMPLATE ("src",
+ GST_PAD_SRC,
+ GST_PAD_ALWAYS,
+ GST_STATIC_CAPS_ANY);
+*/
+/* Spectrum properties */
enum
{
- ARG_0,
- ARG_WIDTH,
- ARG_THRESHOLD
+ PROP_0,
+ PROP_SIGNAL_SPECTRUM,
+ PROP_SIGNAL_INTERVAL,
+ PROP_BANDS,
+ PROP_THRESHOLD
};
-GST_BOILERPLATE (GstSpectrum, gst_spectrum, GstElement, GST_TYPE_ELEMENT);
+GST_BOILERPLATE (GstSpectrum, gst_spectrum, GstBaseTransform,
+ GST_TYPE_BASE_TRANSFORM);
static void gst_spectrum_dispose (GObject * object);
static void gst_spectrum_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
+static void gst_spectrum_get_property (GObject * object, guint prop_id,
+ GValue * value, GParamSpec * pspec);
+/*
static gboolean gst_spectrum_set_sink_caps (GstPad * pad, GstCaps * caps);
static GstCaps *gst_spectrum_get_sink_caps (GstPad * pad);
static GstFlowReturn gst_spectrum_chain (GstPad * pad, GstBuffer * buffer);
static GstStateChangeReturn gst_spectrum_change_state (GstElement * element,
GstStateChange transition);
+*/
+static gboolean gst_spectrum_set_caps (GstBaseTransform * trans, GstCaps * in,
+ GstCaps * out);
+static gboolean gst_spectrum_start (GstBaseTransform * trans);
+static GstFlowReturn gst_spectrum_transform_ip (GstBaseTransform * trans,
+ GstBuffer * in);
+
#define fixed short
extern int gst_spectrum_fix_fft (fixed fr[], fixed fi[], int m, int inverse);
@@ -99,8 +139,6 @@ extern void gst_spectrum_fix_loud (fixed loud[], fixed fr[], fixed fi[], int n,
int scale_shift);
extern void gst_spectrum_window (fixed fr[], int n);
-/*static guint gst_spectrum_signals[LAST_SIGNAL] = { 0 }; */
-
static void
gst_spectrum_base_init (gpointer g_class)
{
@@ -117,21 +155,36 @@ static void
gst_spectrum_class_init (GstSpectrumClass * klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
- GstElementClass *element = GST_ELEMENT_CLASS (klass);
+ GstBaseTransformClass *trans_class = GST_BASE_TRANSFORM_CLASS (klass);
gobject_class->set_property = gst_spectrum_set_property;
+ gobject_class->get_property = gst_spectrum_get_property;
gobject_class->dispose = gst_spectrum_dispose;
- element->change_state = gst_spectrum_change_state;
+ /*element->change_state = gst_spectrum_change_state; */
+ trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_spectrum_set_caps);
+ trans_class->start = GST_DEBUG_FUNCPTR (gst_spectrum_start);
+ trans_class->transform_ip = GST_DEBUG_FUNCPTR (gst_spectrum_transform_ip);
+ trans_class->passthrough_on_same_caps = TRUE;
+
+ g_object_class_install_property (gobject_class, PROP_SIGNAL_SPECTRUM,
+ g_param_spec_boolean ("message", "mesage",
+ "Post a level message for each passed interval",
+ TRUE, G_PARAM_READWRITE));
+
+ g_object_class_install_property (gobject_class, PROP_SIGNAL_INTERVAL,
+ g_param_spec_uint64 ("interval", "Interval",
+ "Interval of time between message posts (in nanoseconds)",
+ 1, G_MAXUINT64, GST_SECOND / 10, G_PARAM_READWRITE));
- g_object_class_install_property (gobject_class, ARG_WIDTH,
- g_param_spec_uint ("width", "Width", "number of frequency bands",
- 0, G_MAXUINT, 0, G_PARAM_WRITABLE));
+ g_object_class_install_property (gobject_class, PROP_BANDS,
+ g_param_spec_uint ("bands", "Bands", "number of frequency bands",
+ 0, G_MAXUINT, 0, G_PARAM_READWRITE));
- g_object_class_install_property (gobject_class, ARG_THRESHOLD,
+ g_object_class_install_property (gobject_class, PROP_THRESHOLD,
g_param_spec_int ("threshold", "Threshold",
"db threshold for result, maps to 0", G_MININT, 0, -60,
- G_PARAM_WRITABLE));
+ G_PARAM_READWRITE));
GST_DEBUG_CATEGORY_INIT (gst_spectrum_debug, "spectrum", 0,
"audio spectrum analyser element");
@@ -140,20 +193,22 @@ gst_spectrum_class_init (GstSpectrumClass * klass)
static void
gst_spectrum_init (GstSpectrum * spectrum, GstSpectrumClass * g_class)
{
- spectrum->sinkpad =
- gst_pad_new_from_static_template (&sink_template_factory, "sink");
- gst_pad_set_chain_function (spectrum->sinkpad, gst_spectrum_chain);
- gst_pad_set_setcaps_function (spectrum->sinkpad, gst_spectrum_set_sink_caps);
- gst_pad_set_getcaps_function (spectrum->sinkpad, gst_spectrum_get_sink_caps);
- gst_element_add_pad (GST_ELEMENT (spectrum), spectrum->sinkpad);
-
- spectrum->srcpad =
- gst_pad_new_from_static_template (&src_template_factory, "src");
- gst_element_add_pad (GST_ELEMENT (spectrum), spectrum->srcpad);
+ /*
+ spectrum->sinkpad =
+ gst_pad_new_from_static_template (&sink_template_factory, "sink");
+ gst_pad_set_chain_function (spectrum->sinkpad, gst_spectrum_chain);
+ gst_pad_set_setcaps_function (spectrum->sinkpad, gst_spectrum_set_sink_caps);
+ gst_pad_set_getcaps_function (spectrum->sinkpad, gst_spectrum_get_sink_caps);
+ gst_element_add_pad (GST_ELEMENT (spectrum), spectrum->sinkpad);
+
+ spectrum->srcpad =
+ gst_pad_new_from_static_template (&src_template_factory, "src");
+ gst_element_add_pad (GST_ELEMENT (spectrum), spectrum->srcpad);
+ */
spectrum->adapter = gst_adapter_new ();
- spectrum->width = 128;
+ spectrum->bands = 128;
spectrum->base = 9;
spectrum->len = 1024; /* 2 ^ (base+1) */
@@ -162,6 +217,7 @@ gst_spectrum_init (GstSpectrum * spectrum, GstSpectrumClass * g_class)
memset (spectrum->im, 0, spectrum->len * sizeof (gint16));
spectrum->re = g_malloc (spectrum->len * sizeof (gint16));
memset (spectrum->re, 0, spectrum->len * sizeof (gint16));
+ spectrum->spect = g_malloc (spectrum->bands * sizeof (guchar));
}
static void
@@ -177,6 +233,7 @@ gst_spectrum_dispose (GObject * object)
g_free (spectrum->re);
g_free (spectrum->im);
g_free (spectrum->loud);
+ g_free (spectrum->spect);
G_OBJECT_CLASS (parent_class)->dispose (object);
}
@@ -185,14 +242,24 @@ static void
gst_spectrum_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
- GstSpectrum *spectrum = GST_SPECTRUM (object);
+ GstSpectrum *filter = GST_SPECTRUM (object);
switch (prop_id) {
- case ARG_WIDTH:
- spectrum->width = g_value_get_uint (value);
+ case PROP_SIGNAL_SPECTRUM:
+ filter->message = g_value_get_boolean (value);
+ break;
+ case PROP_SIGNAL_INTERVAL:
+ filter->interval = gst_guint64_to_gdouble (g_value_get_uint64 (value));
+ break;
+ case PROP_BANDS:
+ filter->bands = g_value_get_uint (value);
+ g_free (filter->spect);
+ filter->spect = g_malloc (filter->bands * sizeof (guchar));
+ GST_DEBUG_OBJECT (filter, "reallocation, spect = %p, bands =%d ",
+ filter->spect, filter->bands);
break;
- case ARG_THRESHOLD:
- spectrum->threshold = g_value_get_int (value);
+ case PROP_THRESHOLD:
+ filter->threshold = g_value_get_int (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
@@ -200,6 +267,32 @@ gst_spectrum_set_property (GObject * object, guint prop_id,
}
}
+static void
+gst_spectrum_get_property (GObject * object, guint prop_id,
+ GValue * value, GParamSpec * pspec)
+{
+ GstSpectrum *filter = GST_SPECTRUM (object);
+
+ switch (prop_id) {
+ case PROP_SIGNAL_SPECTRUM:
+ g_value_set_boolean (value, filter->message);
+ break;
+ case PROP_SIGNAL_INTERVAL:
+ g_value_set_uint64 (value, filter->interval);
+ break;
+ case PROP_BANDS:
+ g_value_set_uint (value, filter->bands);
+ break;
+ case PROP_THRESHOLD:
+ g_value_set_int (value, filter->threshold);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+/*
static gboolean
gst_spectrum_set_sink_caps (GstPad * pad, GstCaps * caps)
{
@@ -232,29 +325,89 @@ gst_spectrum_get_sink_caps (GstPad * pad)
gst_object_unref (spectrum);
return res;
}
+*/
+
+static gboolean
+gst_spectrum_set_caps (GstBaseTransform * trans, GstCaps * in, GstCaps * out)
+{
+ GstSpectrum *filter = GST_SPECTRUM (trans);
+ GstStructure *structure;
+
+ structure = gst_caps_get_structure (in, 0);
+ gst_structure_get_int (structure, "rate", &filter->rate);
+ gst_structure_get_int (structure, "width", &filter->width);
+ gst_structure_get_int (structure, "channels", &filter->channels);
+
+ return TRUE;
+}
+
+static gboolean
+gst_spectrum_start (GstBaseTransform * trans)
+{
+ GstSpectrum *filter = GST_SPECTRUM (trans);
+
+ gst_adapter_clear (filter->adapter);
+ filter->num_frames = 0;
+
+ return TRUE;
+}
+
+static GstMessage *
+gst_spectrum_message_new (GstSpectrum * spectrum, GstClockTime endtime)
+{
+ GstStructure *s;
+ GValue v = { 0, };
+ GValue *l;
+ guint i;
+ guchar *spect = spectrum->spect;
+
+ GST_DEBUG_OBJECT (spectrum, "preparing message, spect = %p, bands =%d ",
+ spect, spectrum->bands);
+
+ s = gst_structure_new ("spectrum", "endtime", GST_TYPE_CLOCK_TIME,
+ endtime, NULL);
+
+ g_value_init (&v, GST_TYPE_LIST);
+ /* will copy-by-value */
+ gst_structure_set_value (s, "spectrum", &v);
+ g_value_unset (&v);
+
+ g_value_init (&v, G_TYPE_UCHAR);
+ l = (GValue *) gst_structure_get_value (s, "spectrum");
+ for (i = 0; i < spectrum->bands; i++) {
+ g_value_set_uchar (&v, spect[i]);
+ gst_value_list_append_value (l, &v); /* copies by value */
+ }
+ g_value_unset (&v);
+
+ return gst_message_new_element (GST_OBJECT (spectrum), s);
+}
static GstFlowReturn
-gst_spectrum_chain (GstPad * pad, GstBuffer * buffer)
+gst_spectrum_transform_ip (GstBaseTransform * trans, GstBuffer * in)
{
- GstSpectrum *spectrum = GST_SPECTRUM (gst_pad_get_parent (pad));
+ GstSpectrum *spectrum = GST_SPECTRUM (trans);
gint16 *samples;
gint wanted;
gint i, j, k;
gint32 acc;
gfloat pos, step;
- guchar *spect;
- GstBuffer *outbuf;
- GstFlowReturn ret = GST_FLOW_OK;
+ guchar *spect = spectrum->spect;
+ GstClockTime endtime = GST_BUFFER_TIMESTAMP (in);
+ GstClockTime blktime =
+ GST_FRAMES_TO_CLOCK_TIME (spectrum->len, spectrum->rate);
+
+ GST_DEBUG ("transform : %ld bytes", GST_BUFFER_SIZE (in));
- gst_adapter_push (spectrum->adapter, buffer);
+ gst_adapter_push (spectrum->adapter, gst_buffer_ref (in));
/* required number of bytes */
wanted = spectrum->channels * spectrum->len * 2;
/* FIXME: 4.0 was 2.0 before, but that include the mirrored spectrum */
- step = (gfloat) spectrum->len / (spectrum->width * 4.0);
+ step = (gfloat) spectrum->len / (spectrum->bands * 4.0);
- while (gst_adapter_available (spectrum->adapter) > wanted &&
- (ret == GST_FLOW_OK)) {
+ while (gst_adapter_available (spectrum->adapter) > wanted) {
+ GST_DEBUG (" adapter loop");
samples = (gint16 *) gst_adapter_take (spectrum->adapter, wanted);
for (i = 0, j = 0; i < spectrum->len; i++) {
@@ -263,19 +416,17 @@ gst_spectrum_chain (GstPad * pad, GstBuffer * buffer)
spectrum->re[i] = (gint16) (acc / spectrum->channels);
}
+ GST_DEBUG (" fft");
+
gst_spectrum_window (spectrum->re, spectrum->len);
gst_spectrum_fix_fft (spectrum->re, spectrum->im, spectrum->base, FALSE);
gst_spectrum_fix_loud (spectrum->loud, spectrum->re, spectrum->im,
spectrum->len, 0);
- ret = gst_pad_alloc_buffer_and_set_caps (spectrum->srcpad,
- GST_BUFFER_OFFSET_NONE, spectrum->width,
- GST_PAD_CAPS (spectrum->srcpad), &outbuf);
+ GST_DEBUG (" resampling");
- /* resample to requested width */
- spect = GST_BUFFER_DATA (outbuf);
- for (i = 0, pos = 0.0; i < spectrum->width; i++, pos += step) {
- /* > -60 db? FIXME: make this a gobject property */
+ /* resample to requested number of bands */
+ for (i = 0, pos = 0.0; i < spectrum->bands; i++, pos += step) {
if (spectrum->loud[(gint) pos] > spectrum->threshold) {
spect[i] = spectrum->loud[(gint) pos] - spectrum->threshold;
/*
@@ -287,13 +438,27 @@ gst_spectrum_chain (GstPad * pad, GstBuffer * buffer)
spect[i] = 0;
}
- ret = gst_pad_push (spectrum->srcpad, outbuf);
+ GST_DEBUG (" send message?");
+ //ret = gst_pad_push (spectrum->srcpad, outbuf);
+ spectrum->num_frames += spectrum->len;
+ endtime += blktime;
+ /* do we need to message ? */
+ if (spectrum->num_frames >=
+ GST_CLOCK_TIME_TO_FRAMES (spectrum->interval, spectrum->rate)) {
+ if (spectrum->message) {
+ GstMessage *m = gst_spectrum_message_new (spectrum, endtime);
+
+ GST_DEBUG (" sending message");
+ gst_element_post_message (GST_ELEMENT (spectrum), m);
+ }
+ spectrum->num_frames = 0;
+ }
}
- gst_object_unref (spectrum);
- return ret;
+ return GST_FLOW_OK;
}
+/*
static GstStateChangeReturn
gst_spectrum_change_state (GstElement * element, GstStateChange transition)
{
@@ -327,7 +492,7 @@ gst_spectrum_change_state (GstElement * element, GstStateChange transition)
return ret;
}
-
+*/
static gboolean
plugin_init (GstPlugin * plugin)
diff --git a/gst/spectrum/gstspectrum.h b/gst/spectrum/gstspectrum.h
index a6c918c0..51e2000c 100644
--- a/gst/spectrum/gstspectrum.h
+++ b/gst/spectrum/gstspectrum.h
@@ -24,6 +24,7 @@
#include <gst/gst.h>
#include <gst/base/gstadapter.h>
+#include <gst/base/gstbasetransform.h>
#ifdef __cplusplus
extern "C" {
@@ -40,25 +41,35 @@ typedef struct _GstSpectrum GstSpectrum;
typedef struct _GstSpectrumClass GstSpectrumClass;
struct _GstSpectrum {
- GstElement element;
+ GstBaseTransform element;
GstPad *sinkpad,*srcpad;
GstAdapter *adapter;
/* properties */
- guint width;
- gint threshold;
-
+ gboolean message; /* whether or not to post messages */
+ gdouble interval; /* how many seconds between emits */
+ guint bands; /* number of spectrum bands */
+ gint threshold; /* energy level treshold */
+
+ gint num_frames; /* frame count (1 sample per channel)
+ * since last emit */
+
+ gint rate; /* caps variables */
+ gint width;
gint channels;
+
+ /* <private> */
gint base, len;
gint16 *re, *im, *loud;
+ guchar *spect;
};
struct _GstSpectrumClass {
- GstElementClass parent_class;
+ GstBaseTransformClass parent_class;
};
-GType gst_spectrum_get_type(void);
+GType gst_spectrum_get_type (void);
#ifdef __cplusplus