2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:27:31 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
2011-03-24 22:10:56 +00:00
|
|
|
* <2006,2011> Stefan Kost <ensonic@users.sf.net>
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
* <2007-2009> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2001-12-22 23:27:31 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-12-22 23:27:31 +00:00
|
|
|
*/
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-spectrum
|
|
|
|
*
|
|
|
|
* The Spectrum element analyzes the frequency spectrum of an audio signal.
|
2009-09-11 11:28:35 +00:00
|
|
|
* If the #GstSpectrum:post-messages property is #TRUE, it sends analysis results
|
2012-10-10 08:09:10 +00:00
|
|
|
* as element messages named
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* <classname>"spectrum"</classname> after each interval of time given
|
2008-02-07 13:41:11 +00:00
|
|
|
* by the #GstSpectrum:interval property.
|
2009-01-28 10:29:42 +00:00
|
|
|
*
|
2008-02-09 01:45:32 +00:00
|
|
|
* The message's structure contains some combination of these fields:
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstClockTime
|
2008-08-10 15:52:42 +00:00
|
|
|
* <classname>"timestamp"</classname>:
|
|
|
|
* the timestamp of the buffer that triggered the message.
|
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstClockTime
|
|
|
|
* <classname>"stream-time"</classname>:
|
|
|
|
* the stream time of the buffer.
|
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstClockTime
|
|
|
|
* <classname>"running-time"</classname>:
|
|
|
|
* the running_time of the buffer.
|
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstClockTime
|
|
|
|
* <classname>"duration"</classname>:
|
|
|
|
* the duration of the buffer.
|
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstClockTime
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* <classname>"endtime"</classname>:
|
2008-08-10 15:52:42 +00:00
|
|
|
* the end time of the buffer that triggered the message as stream time (this
|
|
|
|
* is deprecated, as it can be calculated from stream-time + duration)
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* </para>
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* <para>
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
* #GstValueList of #gfloat
|
|
|
|
* <classname>"magnitude"</classname>:
|
2007-11-11 21:12:10 +00:00
|
|
|
* the level for each frequency band in dB. All values below the value of the
|
2008-02-09 01:45:32 +00:00
|
|
|
* #GstSpectrum:threshold property will be set to the threshold. Only present
|
2011-03-09 14:55:56 +00:00
|
|
|
* if the #GstSpectrum:message-magnitude property is %TRUE.
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* </para>
|
|
|
|
* </listitem>
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
* <listitem>
|
|
|
|
* <para>
|
|
|
|
* #GstValueList of #gfloat
|
|
|
|
* <classname>"phase"</classname>:
|
2008-02-09 01:45:32 +00:00
|
|
|
* The phase for each frequency band. The value is between -pi and pi. Only
|
2011-03-09 14:55:56 +00:00
|
|
|
* present if the #GstSpectrum:message-phase property is %TRUE.
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
* </para>
|
|
|
|
* </listitem>
|
2008-01-21 07:54:02 +00:00
|
|
|
* </itemizedlist>
|
2009-01-28 10:29:42 +00:00
|
|
|
*
|
2011-03-09 14:57:28 +00:00
|
|
|
* If #GstSpectrum:multi-channel property is set to true. magnitude and phase
|
|
|
|
* fields will be each a nested #GstValueArray. The first dimension are the
|
|
|
|
* channels and the second dimension are the values.
|
|
|
|
*
|
2009-01-28 10:29:42 +00:00
|
|
|
* <refsect2>
|
2008-02-09 01:45:32 +00:00
|
|
|
* <title>Example application</title>
|
2014-02-18 21:54:45 +00:00
|
|
|
* <informalexample><programlisting language="C">
|
2009-01-28 10:29:42 +00:00
|
|
|
* <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" parse="text" href="../../../../tests/examples/spectrum/spectrum-example.c" />
|
2014-02-18 21:54:45 +00:00
|
|
|
* </programlisting></informalexample>
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
* </refsect2>
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
*/
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
#include <string.h>
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
#include <math.h>
|
2001-12-22 23:27:31 +00:00
|
|
|
#include "gstspectrum.h"
|
|
|
|
|
2006-05-20 22:42:15 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_spectrum_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_spectrum_debug
|
|
|
|
|
2002-09-18 19:02:51 +00:00
|
|
|
/* elementfactory information */
|
2011-08-19 12:01:45 +00:00
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
2011-09-06 11:16:27 +00:00
|
|
|
# define FORMATS "{ S16LE, S24LE, S32LE, F32LE, F64LE }"
|
2011-08-19 12:01:45 +00:00
|
|
|
#else
|
2011-09-06 11:16:27 +00:00
|
|
|
# define FORMATS "{ S16BE, S24BE, S32BE, F32BE, F64BE }"
|
2011-08-19 12:01:45 +00:00
|
|
|
#endif
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
|
|
|
|
#define ALLOWED_CAPS \
|
2012-01-04 11:03:50 +00:00
|
|
|
GST_AUDIO_CAPS_MAKE (FORMATS) ", " \
|
|
|
|
"layout = (string) interleaved"
|
2001-12-22 23:27:31 +00:00
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
/* Spectrum properties */
|
2011-08-19 12:01:45 +00:00
|
|
|
#define DEFAULT_POST_MESSAGES TRUE
|
2008-04-04 09:50:10 +00:00
|
|
|
#define DEFAULT_MESSAGE_MAGNITUDE TRUE
|
|
|
|
#define DEFAULT_MESSAGE_PHASE FALSE
|
|
|
|
#define DEFAULT_INTERVAL (GST_SECOND / 10)
|
2007-03-06 13:57:55 +00:00
|
|
|
#define DEFAULT_BANDS 128
|
|
|
|
#define DEFAULT_THRESHOLD -60
|
2011-03-09 14:57:28 +00:00
|
|
|
#define DEFAULT_MULTI_CHANNEL FALSE
|
2007-03-06 13:57:55 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
PROP_0,
|
2009-09-11 11:28:35 +00:00
|
|
|
PROP_POST_MESSAGES,
|
2008-04-04 09:50:10 +00:00
|
|
|
PROP_MESSAGE_MAGNITUDE,
|
|
|
|
PROP_MESSAGE_PHASE,
|
|
|
|
PROP_INTERVAL,
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
PROP_BANDS,
|
2011-03-09 14:57:28 +00:00
|
|
|
PROP_THRESHOLD,
|
|
|
|
PROP_MULTI_CHANNEL
|
2001-12-22 23:27:31 +00:00
|
|
|
};
|
|
|
|
|
2011-06-30 08:51:55 +00:00
|
|
|
#define gst_spectrum_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstSpectrum, gst_spectrum, GST_TYPE_AUDIO_FILTER);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2007-11-26 10:08:20 +00:00
|
|
|
static void gst_spectrum_finalize (GObject * object);
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_spectrum_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
static void gst_spectrum_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static gboolean gst_spectrum_start (GstBaseTransform * trans);
|
2006-09-12 20:18:55 +00:00
|
|
|
static gboolean gst_spectrum_stop (GstBaseTransform * trans);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
static GstFlowReturn gst_spectrum_transform_ip (GstBaseTransform * trans,
|
|
|
|
GstBuffer * in);
|
2011-08-19 14:09:48 +00:00
|
|
|
static gboolean gst_spectrum_setup (GstAudioFilter * base,
|
|
|
|
const GstAudioInfo * info);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_spectrum_class_init (GstSpectrumClass * klass)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2011-06-30 08:51:55 +00:00
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
GstBaseTransformClass *trans_class = GST_BASE_TRANSFORM_CLASS (klass);
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
GstAudioFilterClass *filter_class = GST_AUDIO_FILTER_CLASS (klass);
|
2011-06-30 08:51:55 +00:00
|
|
|
GstCaps *caps;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_spectrum_set_property;
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
gobject_class->get_property = gst_spectrum_get_property;
|
2007-11-26 10:08:20 +00:00
|
|
|
gobject_class->finalize = gst_spectrum_finalize;
|
2006-05-20 22:42:15 +00:00
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
trans_class->start = GST_DEBUG_FUNCPTR (gst_spectrum_start);
|
2006-09-12 20:18:55 +00:00
|
|
|
trans_class->stop = GST_DEBUG_FUNCPTR (gst_spectrum_stop);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
trans_class->transform_ip = GST_DEBUG_FUNCPTR (gst_spectrum_transform_ip);
|
|
|
|
trans_class->passthrough_on_same_caps = TRUE;
|
|
|
|
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
filter_class->setup = GST_DEBUG_FUNCPTR (gst_spectrum_setup);
|
|
|
|
|
2009-09-11 11:28:35 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_POST_MESSAGES,
|
|
|
|
g_param_spec_boolean ("post-messages", "Post Messages",
|
|
|
|
"Whether to post a 'spectrum' element message on the bus for each "
|
|
|
|
"passed interval", DEFAULT_POST_MESSAGES,
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2008-04-04 09:50:10 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_MESSAGE_MAGNITUDE,
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
g_param_spec_boolean ("message-magnitude", "Magnitude",
|
2008-04-04 09:50:10 +00:00
|
|
|
"Whether to add a 'magnitude' field to the structure of any "
|
|
|
|
"'spectrum' element messages posted on the bus",
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
DEFAULT_MESSAGE_MAGNITUDE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
|
2008-04-04 09:50:10 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_MESSAGE_PHASE,
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
g_param_spec_boolean ("message-phase", "Phase",
|
2008-04-04 09:50:10 +00:00
|
|
|
"Whether to add a 'phase' field to the structure of any "
|
|
|
|
"'spectrum' element messages posted on the bus",
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
DEFAULT_MESSAGE_PHASE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
|
2008-04-04 09:50:10 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_INTERVAL,
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
g_param_spec_uint64 ("interval", "Interval",
|
|
|
|
"Interval of time between message posts (in nanoseconds)",
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
1, G_MAXUINT64, DEFAULT_INTERVAL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_BANDS,
|
2008-04-04 09:50:10 +00:00
|
|
|
g_param_spec_uint ("bands", "Bands", "Number of frequency bands",
|
2015-02-16 02:34:28 +00:00
|
|
|
2, ((guint) G_MAXINT + 2) / 2, DEFAULT_BANDS,
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_THRESHOLD,
|
2006-05-21 16:41:44 +00:00
|
|
|
g_param_spec_int ("threshold", "Threshold",
|
2007-11-11 21:12:10 +00:00
|
|
|
"dB threshold for result. All lower values will be set to this",
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
G_MININT, 0, DEFAULT_THRESHOLD,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-20 22:42:15 +00:00
|
|
|
|
2011-03-09 14:57:28 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_MULTI_CHANNEL,
|
|
|
|
g_param_spec_boolean ("multi-channel", "Multichannel results",
|
|
|
|
"Send separate results for each channel",
|
|
|
|
DEFAULT_MULTI_CHANNEL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2006-05-21 16:41:44 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_spectrum_debug, "spectrum", 0,
|
|
|
|
"audio spectrum analyser element");
|
2011-06-30 08:51:55 +00:00
|
|
|
|
2012-04-09 23:51:41 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class, "Spectrum analyzer",
|
2011-06-30 08:51:55 +00:00
|
|
|
"Filter/Analyzer/Audio",
|
|
|
|
"Run an FFT on the audio signal, output spectrum data",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
|
|
|
"Stefan Kost <ensonic@users.sf.net>, "
|
|
|
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
|
|
|
|
|
|
|
caps = gst_caps_from_string (ALLOWED_CAPS);
|
|
|
|
gst_audio_filter_class_add_pad_templates (filter_class, caps);
|
|
|
|
gst_caps_unref (caps);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-30 08:51:55 +00:00
|
|
|
gst_spectrum_init (GstSpectrum * spectrum)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2009-09-11 11:28:35 +00:00
|
|
|
spectrum->post_messages = DEFAULT_POST_MESSAGES;
|
2008-04-04 09:50:10 +00:00
|
|
|
spectrum->message_magnitude = DEFAULT_MESSAGE_MAGNITUDE;
|
|
|
|
spectrum->message_phase = DEFAULT_MESSAGE_PHASE;
|
|
|
|
spectrum->interval = DEFAULT_INTERVAL;
|
2007-03-06 13:57:55 +00:00
|
|
|
spectrum->bands = DEFAULT_BANDS;
|
|
|
|
spectrum->threshold = DEFAULT_THRESHOLD;
|
2012-02-23 10:16:21 +00:00
|
|
|
|
|
|
|
g_mutex_init (&spectrum->lock);
|
2006-05-20 22:42:15 +00:00
|
|
|
}
|
|
|
|
|
2011-03-09 09:40:48 +00:00
|
|
|
static void
|
|
|
|
gst_spectrum_alloc_channel_data (GstSpectrum * spectrum)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GstSpectrumChannel *cd;
|
|
|
|
guint bands = spectrum->bands;
|
|
|
|
guint nfft = 2 * bands - 2;
|
2011-03-10 12:10:25 +00:00
|
|
|
|
|
|
|
g_assert (spectrum->channel_data == NULL);
|
|
|
|
|
|
|
|
spectrum->num_channels = (spectrum->multi_channel) ?
|
2011-08-19 12:01:45 +00:00
|
|
|
GST_AUDIO_FILTER_CHANNELS (spectrum) : 1;
|
2011-03-09 09:40:48 +00:00
|
|
|
|
2011-03-10 12:10:25 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "allocating data for %d channels",
|
|
|
|
spectrum->num_channels);
|
2011-03-09 09:40:48 +00:00
|
|
|
|
2011-03-10 12:10:25 +00:00
|
|
|
spectrum->channel_data = g_new (GstSpectrumChannel, spectrum->num_channels);
|
|
|
|
for (i = 0; i < spectrum->num_channels; i++) {
|
2011-03-09 09:40:48 +00:00
|
|
|
cd = &spectrum->channel_data[i];
|
|
|
|
cd->fft_ctx = gst_fft_f32_new (nfft, FALSE);
|
|
|
|
cd->input = g_new0 (gfloat, nfft);
|
|
|
|
cd->input_tmp = g_new0 (gfloat, nfft);
|
|
|
|
cd->freqdata = g_new0 (GstFFTF32Complex, bands);
|
|
|
|
cd->spect_magnitude = g_new0 (gfloat, bands);
|
|
|
|
cd->spect_phase = g_new0 (gfloat, bands);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_free_channel_data (GstSpectrum * spectrum)
|
|
|
|
{
|
2011-03-10 12:10:25 +00:00
|
|
|
if (spectrum->channel_data) {
|
|
|
|
gint i;
|
|
|
|
GstSpectrumChannel *cd;
|
2011-03-09 09:40:48 +00:00
|
|
|
|
2011-03-10 12:10:25 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "freeing data for %d channels",
|
|
|
|
spectrum->num_channels);
|
2011-03-09 09:40:48 +00:00
|
|
|
|
2011-03-10 12:10:25 +00:00
|
|
|
for (i = 0; i < spectrum->num_channels; i++) {
|
2011-03-09 09:40:48 +00:00
|
|
|
cd = &spectrum->channel_data[i];
|
|
|
|
if (cd->fft_ctx)
|
|
|
|
gst_fft_f32_free (cd->fft_ctx);
|
|
|
|
g_free (cd->input);
|
|
|
|
g_free (cd->input_tmp);
|
|
|
|
g_free (cd->freqdata);
|
|
|
|
g_free (cd->spect_magnitude);
|
|
|
|
g_free (cd->spect_phase);
|
|
|
|
}
|
|
|
|
g_free (spectrum->channel_data);
|
|
|
|
spectrum->channel_data = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-11 12:38:24 +00:00
|
|
|
static void
|
|
|
|
gst_spectrum_flush (GstSpectrum * spectrum)
|
|
|
|
{
|
|
|
|
spectrum->num_frames = 0;
|
|
|
|
spectrum->num_fft = 0;
|
|
|
|
|
|
|
|
spectrum->accumulated_error = 0;
|
|
|
|
}
|
|
|
|
|
2006-05-20 22:42:15 +00:00
|
|
|
static void
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
gst_spectrum_reset_state (GstSpectrum * spectrum)
|
2006-05-20 22:42:15 +00:00
|
|
|
{
|
2010-08-11 12:38:24 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "resetting state");
|
|
|
|
|
2011-03-09 09:40:48 +00:00
|
|
|
gst_spectrum_free_channel_data (spectrum);
|
2010-08-11 12:38:24 +00:00
|
|
|
gst_spectrum_flush (spectrum);
|
2007-11-26 10:08:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstSpectrum *spectrum = GST_SPECTRUM (object);
|
|
|
|
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
gst_spectrum_reset_state (spectrum);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_clear (&spectrum->lock);
|
2006-09-11 18:02:39 +00:00
|
|
|
|
2007-11-26 10:08:20 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_spectrum_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
GstSpectrum *filter = GST_SPECTRUM (object);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2009-09-11 11:28:35 +00:00
|
|
|
case PROP_POST_MESSAGES:
|
|
|
|
filter->post_messages = g_value_get_boolean (value);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
break;
|
2008-04-04 09:50:10 +00:00
|
|
|
case PROP_MESSAGE_MAGNITUDE:
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
filter->message_magnitude = g_value_get_boolean (value);
|
|
|
|
break;
|
2008-04-04 09:50:10 +00:00
|
|
|
case PROP_MESSAGE_PHASE:
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
filter->message_phase = g_value_get_boolean (value);
|
|
|
|
break;
|
2010-08-11 12:40:09 +00:00
|
|
|
case PROP_INTERVAL:{
|
|
|
|
guint64 interval = g_value_get_uint64 (value);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_lock (&filter->lock);
|
2010-08-11 12:40:09 +00:00
|
|
|
if (filter->interval != interval) {
|
2011-03-09 09:14:37 +00:00
|
|
|
filter->interval = interval;
|
2010-08-11 12:40:09 +00:00
|
|
|
gst_spectrum_reset_state (filter);
|
|
|
|
}
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_unlock (&filter->lock);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
break;
|
2012-02-23 10:16:21 +00:00
|
|
|
}
|
2010-08-11 12:40:09 +00:00
|
|
|
case PROP_BANDS:{
|
|
|
|
guint bands = g_value_get_uint (value);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_lock (&filter->lock);
|
2010-08-11 12:40:09 +00:00
|
|
|
if (filter->bands != bands) {
|
|
|
|
filter->bands = bands;
|
|
|
|
gst_spectrum_reset_state (filter);
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
}
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_unlock (&filter->lock);
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
break;
|
2012-02-23 10:16:21 +00:00
|
|
|
}
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
case PROP_THRESHOLD:
|
|
|
|
filter->threshold = g_value_get_int (value);
|
2001-12-22 23:27:31 +00:00
|
|
|
break;
|
2011-03-09 14:57:28 +00:00
|
|
|
case PROP_MULTI_CHANNEL:{
|
|
|
|
gboolean multi_channel = g_value_get_boolean (value);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_lock (&filter->lock);
|
2011-03-09 14:57:28 +00:00
|
|
|
if (filter->multi_channel != multi_channel) {
|
|
|
|
filter->multi_channel = multi_channel;
|
|
|
|
gst_spectrum_reset_state (filter);
|
|
|
|
}
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_unlock (&filter->lock);
|
2011-03-09 14:57:28 +00:00
|
|
|
break;
|
2012-02-23 10:16:21 +00:00
|
|
|
}
|
2001-12-22 23:27:31 +00:00
|
|
|
default:
|
2006-05-20 22:42:15 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2001-12-22 23:27:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
static void
|
|
|
|
gst_spectrum_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstSpectrum *filter = GST_SPECTRUM (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2009-09-11 11:28:35 +00:00
|
|
|
case PROP_POST_MESSAGES:
|
|
|
|
g_value_set_boolean (value, filter->post_messages);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
break;
|
2008-04-04 09:50:10 +00:00
|
|
|
case PROP_MESSAGE_MAGNITUDE:
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
g_value_set_boolean (value, filter->message_magnitude);
|
|
|
|
break;
|
2008-04-04 09:50:10 +00:00
|
|
|
case PROP_MESSAGE_PHASE:
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
g_value_set_boolean (value, filter->message_phase);
|
|
|
|
break;
|
2008-04-04 09:50:10 +00:00
|
|
|
case PROP_INTERVAL:
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
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;
|
2011-03-09 14:57:28 +00:00
|
|
|
case PROP_MULTI_CHANNEL:
|
|
|
|
g_value_set_boolean (value, filter->multi_channel);
|
|
|
|
break;
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_spectrum_start (GstBaseTransform * trans)
|
|
|
|
{
|
2010-08-11 12:38:24 +00:00
|
|
|
GstSpectrum *spectrum = GST_SPECTRUM (trans);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2010-08-11 12:38:24 +00:00
|
|
|
gst_spectrum_reset_state (spectrum);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-09-12 20:18:55 +00:00
|
|
|
static gboolean
|
|
|
|
gst_spectrum_stop (GstBaseTransform * trans)
|
|
|
|
{
|
2010-08-11 12:44:03 +00:00
|
|
|
GstSpectrum *spectrum = GST_SPECTRUM (trans);
|
2006-09-12 20:18:55 +00:00
|
|
|
|
2010-08-11 12:44:03 +00:00
|
|
|
gst_spectrum_reset_state (spectrum);
|
2006-09-12 20:18:55 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-03-10 08:22:29 +00:00
|
|
|
/* mixing data readers */
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_mixed_float (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint i, j, ip = 0;
|
|
|
|
gfloat v;
|
|
|
|
gfloat *in = (gfloat *) _in;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++) {
|
|
|
|
v = in[ip++];
|
|
|
|
for (i = 1; i < channels; i++)
|
|
|
|
v += in[ip++];
|
|
|
|
out[op] = v / channels;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_mixed_double (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint i, j, ip = 0;
|
|
|
|
gfloat v;
|
|
|
|
gdouble *in = (gdouble *) _in;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++) {
|
|
|
|
v = in[ip++];
|
|
|
|
for (i = 1; i < channels; i++)
|
|
|
|
v += in[ip++];
|
|
|
|
out[op] = v / channels;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_mixed_int32_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint i, j, ip = 0;
|
|
|
|
gint32 *in = (gint32 *) _in;
|
|
|
|
gfloat v;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++) {
|
|
|
|
v = in[ip++] / max_value;
|
|
|
|
for (i = 1; i < channels; i++)
|
|
|
|
v += in[ip++] / max_value;
|
|
|
|
out[op] = v / channels;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_mixed_int24_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint i, j;
|
2011-03-10 08:22:29 +00:00
|
|
|
gfloat v = 0.0;
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
for (j = 0; j < len; j++) {
|
|
|
|
for (i = 0; i < channels; i++) {
|
2011-03-10 08:22:29 +00:00
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
2011-03-24 22:10:56 +00:00
|
|
|
gint32 value = GST_READ_UINT24_BE (_in);
|
2011-03-10 08:22:29 +00:00
|
|
|
#else
|
2011-03-24 22:10:56 +00:00
|
|
|
gint32 value = GST_READ_UINT24_LE (_in);
|
2011-03-10 08:22:29 +00:00
|
|
|
#endif
|
2011-03-24 22:10:56 +00:00
|
|
|
if (value & 0x00800000)
|
|
|
|
value |= 0xff000000;
|
|
|
|
v += value / max_value;
|
|
|
|
_in += 3;
|
|
|
|
}
|
|
|
|
out[op] = v / channels;
|
|
|
|
op = (op + 1) % nfft;
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_mixed_int16_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint i, j, ip = 0;
|
|
|
|
gint16 *in = (gint16 *) _in;
|
|
|
|
gfloat v;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++) {
|
|
|
|
v = in[ip++] / max_value;
|
|
|
|
for (i = 1; i < channels; i++)
|
|
|
|
v += in[ip++] / max_value;
|
|
|
|
out[op] = v / channels;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* non mixing data readers */
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_float (const guint8 * _in, gfloat * out, guint len, guint channels,
|
|
|
|
gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint j, ip;
|
|
|
|
gfloat *in = (gfloat *) _in;
|
|
|
|
|
|
|
|
for (j = 0, ip = 0; j < len; j++, ip += channels) {
|
|
|
|
out[op] = in[ip];
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_double (const guint8 * _in, gfloat * out, guint len, guint channels,
|
|
|
|
gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint j, ip;
|
|
|
|
gdouble *in = (gdouble *) _in;
|
|
|
|
|
|
|
|
for (j = 0, ip = 0; j < len; j++, ip += channels) {
|
|
|
|
out[op] = in[ip];
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_int32_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint j, ip;
|
|
|
|
gint32 *in = (gint32 *) _in;
|
|
|
|
|
|
|
|
for (j = 0, ip = 0; j < len; j++, ip += channels) {
|
|
|
|
out[op] = in[ip] / max_value;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_int24_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint j;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++) {
|
2011-03-10 08:22:29 +00:00
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
2011-03-24 22:10:56 +00:00
|
|
|
gint32 v = GST_READ_UINT24_BE (_in);
|
2011-03-10 08:22:29 +00:00
|
|
|
#else
|
2011-03-24 22:10:56 +00:00
|
|
|
gint32 v = GST_READ_UINT24_LE (_in);
|
2011-03-10 08:22:29 +00:00
|
|
|
#endif
|
2011-03-24 22:10:56 +00:00
|
|
|
if (v & 0x00800000)
|
|
|
|
v |= 0xff000000;
|
|
|
|
_in += 3 * channels;
|
|
|
|
out[op] = v / max_value;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
static void
|
|
|
|
input_data_int16_max (const guint8 * _in, gfloat * out, guint len,
|
|
|
|
guint channels, gfloat max_value, guint op, guint nfft)
|
2011-03-10 08:22:29 +00:00
|
|
|
{
|
2011-03-24 22:10:56 +00:00
|
|
|
guint j, ip;
|
|
|
|
gint16 *in = (gint16 *) _in;
|
|
|
|
|
|
|
|
for (j = 0, ip = 0; j < len; j++, ip += channels) {
|
|
|
|
out[op] = in[ip] / max_value;
|
|
|
|
op = (op + 1) % nfft;
|
|
|
|
}
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
|
|
|
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
static gboolean
|
2011-08-19 14:09:48 +00:00
|
|
|
gst_spectrum_setup (GstAudioFilter * base, const GstAudioInfo * info)
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
{
|
2011-03-09 09:18:19 +00:00
|
|
|
GstSpectrum *spectrum = GST_SPECTRUM (base);
|
2011-03-24 22:10:56 +00:00
|
|
|
gboolean multi_channel = spectrum->multi_channel;
|
|
|
|
GstSpectrumInputData input_data = NULL;
|
2011-03-10 08:22:29 +00:00
|
|
|
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_lock (&spectrum->lock);
|
2011-08-19 12:01:45 +00:00
|
|
|
switch (GST_AUDIO_INFO_FORMAT (info)) {
|
|
|
|
case GST_AUDIO_FORMAT_S16:
|
|
|
|
input_data =
|
|
|
|
multi_channel ? input_data_int16_max : input_data_mixed_int16_max;
|
|
|
|
break;
|
2011-09-06 11:16:27 +00:00
|
|
|
case GST_AUDIO_FORMAT_S24:
|
2011-08-19 12:01:45 +00:00
|
|
|
input_data =
|
|
|
|
multi_channel ? input_data_int24_max : input_data_mixed_int24_max;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_S32:
|
|
|
|
input_data =
|
|
|
|
multi_channel ? input_data_int32_max : input_data_mixed_int32_max;
|
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_F32:
|
2011-03-24 22:10:56 +00:00
|
|
|
input_data = multi_channel ? input_data_float : input_data_mixed_float;
|
2011-08-19 12:01:45 +00:00
|
|
|
break;
|
|
|
|
case GST_AUDIO_FORMAT_F64:
|
2011-03-24 22:10:56 +00:00
|
|
|
input_data = multi_channel ? input_data_double : input_data_mixed_double;
|
2011-08-19 12:01:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-03-10 08:22:29 +00:00
|
|
|
g_assert_not_reached ();
|
2011-08-19 12:01:45 +00:00
|
|
|
break;
|
2011-03-10 08:22:29 +00:00
|
|
|
}
|
2011-03-24 22:10:56 +00:00
|
|
|
spectrum->input_data = input_data;
|
2011-08-19 12:01:45 +00:00
|
|
|
|
2011-03-09 09:18:19 +00:00
|
|
|
gst_spectrum_reset_state (spectrum);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_unlock (&spectrum->lock);
|
2011-08-19 12:01:45 +00:00
|
|
|
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-03-09 14:57:28 +00:00
|
|
|
static GValue *
|
|
|
|
gst_spectrum_message_add_container (GstStructure * s, GType type,
|
|
|
|
const gchar * name)
|
2011-03-09 09:40:48 +00:00
|
|
|
{
|
|
|
|
GValue v = { 0, };
|
|
|
|
|
2011-03-09 14:57:28 +00:00
|
|
|
g_value_init (&v, type);
|
2011-03-09 09:40:48 +00:00
|
|
|
/* will copy-by-value */
|
|
|
|
gst_structure_set_value (s, name, &v);
|
|
|
|
g_value_unset (&v);
|
2011-03-09 14:57:28 +00:00
|
|
|
return (GValue *) gst_structure_get_value (s, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_message_add_list (GValue * cv, gfloat * data, guint num_values)
|
|
|
|
{
|
|
|
|
GValue v = { 0, };
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
g_value_init (&v, G_TYPE_FLOAT);
|
|
|
|
for (i = 0; i < num_values; i++) {
|
|
|
|
g_value_set_float (&v, data[i]);
|
|
|
|
gst_value_list_append_value (cv, &v); /* copies by value */
|
|
|
|
}
|
|
|
|
g_value_unset (&v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_message_add_array (GValue * cv, gfloat * data, guint num_values)
|
|
|
|
{
|
|
|
|
GValue v = { 0, };
|
|
|
|
GValue a = { 0, };
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
g_value_init (&a, GST_TYPE_ARRAY);
|
2011-03-09 09:40:48 +00:00
|
|
|
|
|
|
|
g_value_init (&v, G_TYPE_FLOAT);
|
|
|
|
for (i = 0; i < num_values; i++) {
|
|
|
|
g_value_set_float (&v, data[i]);
|
2011-03-09 14:57:28 +00:00
|
|
|
gst_value_array_append_value (&a, &v); /* copies by value */
|
2011-03-09 09:40:48 +00:00
|
|
|
}
|
|
|
|
g_value_unset (&v);
|
2011-03-09 14:57:28 +00:00
|
|
|
|
|
|
|
gst_value_array_append_value (cv, &a); /* copies by value */
|
|
|
|
g_value_unset (&a);
|
2011-03-09 09:40:48 +00:00
|
|
|
}
|
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
static GstMessage *
|
2008-08-10 15:52:42 +00:00
|
|
|
gst_spectrum_message_new (GstSpectrum * spectrum, GstClockTime timestamp,
|
|
|
|
GstClockTime duration)
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
{
|
2008-08-10 15:52:42 +00:00
|
|
|
GstBaseTransform *trans = GST_BASE_TRANSFORM_CAST (spectrum);
|
2011-03-09 09:40:48 +00:00
|
|
|
GstSpectrumChannel *cd;
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
GstStructure *s;
|
2011-03-09 14:57:28 +00:00
|
|
|
GValue *mcv = NULL, *pcv = NULL;
|
2008-08-10 15:52:42 +00:00
|
|
|
GstClockTime endtime, running_time, stream_time;
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2011-03-09 09:40:48 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "preparing message, bands =%d ", spectrum->bands);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2008-08-10 15:52:42 +00:00
|
|
|
running_time = gst_segment_to_running_time (&trans->segment, GST_FORMAT_TIME,
|
|
|
|
timestamp);
|
|
|
|
stream_time = gst_segment_to_stream_time (&trans->segment, GST_FORMAT_TIME,
|
|
|
|
timestamp);
|
|
|
|
/* endtime is for backwards compatibility */
|
|
|
|
endtime = stream_time + duration;
|
|
|
|
|
|
|
|
s = gst_structure_new ("spectrum",
|
|
|
|
"endtime", GST_TYPE_CLOCK_TIME, endtime,
|
|
|
|
"timestamp", G_TYPE_UINT64, timestamp,
|
|
|
|
"stream-time", G_TYPE_UINT64, stream_time,
|
|
|
|
"running-time", G_TYPE_UINT64, running_time,
|
|
|
|
"duration", G_TYPE_UINT64, duration, NULL);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2011-03-09 14:57:28 +00:00
|
|
|
if (!spectrum->multi_channel) {
|
|
|
|
cd = &spectrum->channel_data[0];
|
2011-03-09 09:40:48 +00:00
|
|
|
|
2011-03-09 14:57:28 +00:00
|
|
|
if (spectrum->message_magnitude) {
|
|
|
|
/* FIXME 0.11: this should be an array, not a list */
|
|
|
|
mcv = gst_spectrum_message_add_container (s, GST_TYPE_LIST, "magnitude");
|
|
|
|
gst_spectrum_message_add_list (mcv, cd->spect_magnitude, spectrum->bands);
|
|
|
|
}
|
|
|
|
if (spectrum->message_phase) {
|
|
|
|
/* FIXME 0.11: this should be an array, not a list */
|
|
|
|
pcv = gst_spectrum_message_add_container (s, GST_TYPE_LIST, "phase");
|
|
|
|
gst_spectrum_message_add_list (pcv, cd->spect_phase, spectrum->bands);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
guint c;
|
2011-08-19 12:01:45 +00:00
|
|
|
guint channels = GST_AUDIO_FILTER_CHANNELS (spectrum);
|
2011-03-09 14:57:28 +00:00
|
|
|
|
|
|
|
if (spectrum->message_magnitude) {
|
|
|
|
mcv = gst_spectrum_message_add_container (s, GST_TYPE_ARRAY, "magnitude");
|
|
|
|
}
|
|
|
|
if (spectrum->message_phase) {
|
|
|
|
pcv = gst_spectrum_message_add_container (s, GST_TYPE_ARRAY, "phase");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (c = 0; c < channels; c++) {
|
|
|
|
cd = &spectrum->channel_data[c];
|
|
|
|
|
|
|
|
if (spectrum->message_magnitude) {
|
|
|
|
gst_spectrum_message_add_array (mcv, cd->spect_magnitude,
|
|
|
|
spectrum->bands);
|
|
|
|
}
|
|
|
|
if (spectrum->message_phase) {
|
|
|
|
gst_spectrum_message_add_array (pcv, cd->spect_magnitude,
|
|
|
|
spectrum->bands);
|
|
|
|
}
|
|
|
|
}
|
2011-03-09 09:40:48 +00:00
|
|
|
}
|
|
|
|
return gst_message_new_element (GST_OBJECT (spectrum), s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_run_fft (GstSpectrum * spectrum, GstSpectrumChannel * cd,
|
|
|
|
guint input_pos)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
guint bands = spectrum->bands;
|
|
|
|
guint nfft = 2 * bands - 2;
|
|
|
|
gint threshold = spectrum->threshold;
|
|
|
|
gfloat *input = cd->input;
|
|
|
|
gfloat *input_tmp = cd->input_tmp;
|
|
|
|
gfloat *spect_magnitude = cd->spect_magnitude;
|
|
|
|
gfloat *spect_phase = cd->spect_phase;
|
|
|
|
GstFFTF32Complex *freqdata = cd->freqdata;
|
|
|
|
GstFFTF32 *fft_ctx = cd->fft_ctx;
|
|
|
|
|
|
|
|
for (i = 0; i < nfft; i++)
|
|
|
|
input_tmp[i] = input[(input_pos + i) % nfft];
|
|
|
|
|
|
|
|
gst_fft_f32_window (fft_ctx, input_tmp, GST_FFT_WINDOW_HAMMING);
|
|
|
|
|
|
|
|
gst_fft_f32_fft (fft_ctx, input_tmp, freqdata);
|
|
|
|
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
if (spectrum->message_magnitude) {
|
2011-03-09 09:40:48 +00:00
|
|
|
gdouble val;
|
|
|
|
/* Calculate magnitude in db */
|
|
|
|
for (i = 0; i < bands; i++) {
|
|
|
|
val = freqdata[i].r * freqdata[i].r;
|
|
|
|
val += freqdata[i].i * freqdata[i].i;
|
|
|
|
val /= nfft * nfft;
|
|
|
|
val = 10.0 * log10 (val);
|
|
|
|
if (val < threshold)
|
|
|
|
val = threshold;
|
|
|
|
spect_magnitude[i] += val;
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
}
|
|
|
|
}
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
Port GstSpectrum to GstAudioFilter and libgstfft, add support for int32, float and double, use floats for the message...
Original commit message from CVS:
* configure.ac:
* gst/spectrum/Makefile.am:
* gst/spectrum/demo-audiotest.c: (draw_spectrum),
(message_handler), (main):
* gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_dispose), (gst_spectrum_set_property),
(gst_spectrum_get_property), (gst_spectrum_start),
(gst_spectrum_setup), (gst_spectrum_message_new),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Port GstSpectrum to GstAudioFilter and libgstfft, add support
for int32, float and double, use floats for the message contents,
average all FFTs done in one interval for better results, use
a better windowing function, allow posting the phase in the message
and actually do an FFT with the requested number of bands instead
of interpolating.
* tests/check/elements/spectrum.c: (GST_START_TEST),
(spectrum_suite):
Improve the units tests by checking for a 11025Hz sine wave
and add unit tests for all 4 supported sample types.
2007-09-06 07:21:22 +00:00
|
|
|
if (spectrum->message_phase) {
|
2011-03-09 09:40:48 +00:00
|
|
|
/* Calculate phase */
|
|
|
|
for (i = 0; i < bands; i++)
|
|
|
|
spect_phase[i] += atan2 (freqdata[i].i, freqdata[i].r);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
}
|
2011-03-09 09:40:48 +00:00
|
|
|
}
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
|
2011-03-09 09:40:48 +00:00
|
|
|
static void
|
|
|
|
gst_spectrum_prepare_message_data (GstSpectrum * spectrum,
|
|
|
|
GstSpectrumChannel * cd)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
guint bands = spectrum->bands;
|
|
|
|
guint num_fft = spectrum->num_fft;
|
|
|
|
|
|
|
|
/* Calculate average */
|
2011-03-10 12:12:01 +00:00
|
|
|
if (spectrum->message_magnitude) {
|
|
|
|
gfloat *spect_magnitude = cd->spect_magnitude;
|
|
|
|
for (i = 0; i < bands; i++)
|
|
|
|
spect_magnitude[i] /= num_fft;
|
|
|
|
}
|
|
|
|
if (spectrum->message_phase) {
|
|
|
|
gfloat *spect_phase = cd->spect_phase;
|
|
|
|
for (i = 0; i < bands; i++)
|
|
|
|
spect_phase[i] /= num_fft;
|
2011-03-09 09:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_spectrum_reset_message_data (GstSpectrum * spectrum,
|
|
|
|
GstSpectrumChannel * cd)
|
|
|
|
{
|
|
|
|
guint bands = spectrum->bands;
|
|
|
|
gfloat *spect_magnitude = cd->spect_magnitude;
|
|
|
|
gfloat *spect_phase = cd->spect_phase;
|
|
|
|
|
|
|
|
/* reset spectrum accumulators */
|
|
|
|
memset (spect_magnitude, 0, bands * sizeof (gfloat));
|
|
|
|
memset (spect_phase, 0, bands * sizeof (gfloat));
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
}
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
|
2006-05-20 22:42:15 +00:00
|
|
|
static GstFlowReturn
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
gst_spectrum_transform_ip (GstBaseTransform * trans, GstBuffer * buffer)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
GstSpectrum *spectrum = GST_SPECTRUM (trans);
|
2011-08-19 12:01:45 +00:00
|
|
|
guint rate = GST_AUDIO_FILTER_RATE (spectrum);
|
|
|
|
guint channels = GST_AUDIO_FILTER_CHANNELS (spectrum);
|
|
|
|
guint bps = GST_AUDIO_FILTER_BPS (spectrum);
|
|
|
|
guint bpf = GST_AUDIO_FILTER_BPF (spectrum);
|
2011-03-24 22:10:56 +00:00
|
|
|
guint output_channels = spectrum->multi_channel ? channels : 1;
|
|
|
|
guint c;
|
2011-08-19 12:01:45 +00:00
|
|
|
gfloat max_value = (1UL << ((bps << 3) - 1)) - 1;
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
guint bands = spectrum->bands;
|
|
|
|
guint nfft = 2 * bands - 2;
|
2010-08-11 12:45:56 +00:00
|
|
|
guint input_pos;
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
gfloat *input;
|
2012-01-24 13:38:58 +00:00
|
|
|
GstMapInfo map;
|
|
|
|
const guint8 *data;
|
2011-06-30 08:51:55 +00:00
|
|
|
gsize size;
|
2011-03-24 22:10:56 +00:00
|
|
|
guint fft_todo, msg_todo, block_size;
|
2010-08-11 12:44:03 +00:00
|
|
|
gboolean have_full_interval;
|
2011-03-09 09:40:48 +00:00
|
|
|
GstSpectrumChannel *cd;
|
2011-03-24 22:10:56 +00:00
|
|
|
GstSpectrumInputData input_data;
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_lock (&spectrum->lock);
|
2012-01-24 13:38:58 +00:00
|
|
|
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
|
|
|
data = map.data;
|
|
|
|
size = map.size;
|
2011-06-30 08:51:55 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (spectrum, "input size: %" G_GSIZE_FORMAT " bytes", size);
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
|
|
|
|
if (GST_BUFFER_IS_DISCONT (buffer)) {
|
2010-08-11 12:38:24 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "Discontinuity detected -- flushing");
|
|
|
|
gst_spectrum_flush (spectrum);
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
}
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
|
2010-08-11 09:45:53 +00:00
|
|
|
/* If we don't have a FFT context yet (or it was reset due to parameter
|
|
|
|
* changes) get one and allocate memory for everything
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
*/
|
2011-03-09 09:40:48 +00:00
|
|
|
if (spectrum->channel_data == NULL) {
|
2010-08-11 12:44:03 +00:00
|
|
|
GST_DEBUG_OBJECT (spectrum, "allocating for bands %u", bands);
|
|
|
|
|
2011-03-09 09:40:48 +00:00
|
|
|
gst_spectrum_alloc_channel_data (spectrum);
|
2010-08-11 12:44:03 +00:00
|
|
|
|
2011-03-10 12:29:25 +00:00
|
|
|
/* number of sample frames we process before posting a message
|
|
|
|
* interval is in ns */
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
spectrum->frames_per_interval =
|
|
|
|
gst_util_uint64_scale (spectrum->interval, rate, GST_SECOND);
|
2011-03-22 14:29:53 +00:00
|
|
|
spectrum->frames_todo = spectrum->frames_per_interval;
|
2011-03-24 22:10:56 +00:00
|
|
|
/* rounding error for frames_per_interval in ns,
|
|
|
|
* aggregated it in accumulated_error */
|
2009-01-19 10:13:53 +00:00
|
|
|
spectrum->error_per_interval = (spectrum->interval * rate) % GST_SECOND;
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
if (spectrum->frames_per_interval == 0)
|
|
|
|
spectrum->frames_per_interval = 1;
|
2010-08-11 12:38:24 +00:00
|
|
|
|
2011-03-10 12:29:25 +00:00
|
|
|
GST_INFO_OBJECT (spectrum, "interval %" GST_TIME_FORMAT ", fpi %"
|
|
|
|
G_GUINT64_FORMAT ", error %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (spectrum->interval), spectrum->frames_per_interval,
|
|
|
|
GST_TIME_ARGS (spectrum->error_per_interval));
|
|
|
|
|
2010-08-11 12:38:24 +00:00
|
|
|
spectrum->input_pos = 0;
|
|
|
|
|
|
|
|
gst_spectrum_flush (spectrum);
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
}
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
if (spectrum->num_frames == 0)
|
|
|
|
spectrum->message_ts = GST_BUFFER_TIMESTAMP (buffer);
|
|
|
|
|
2010-08-11 12:45:56 +00:00
|
|
|
input_pos = spectrum->input_pos;
|
2011-03-24 22:10:56 +00:00
|
|
|
input_data = spectrum->input_data;
|
|
|
|
|
2011-08-19 12:01:45 +00:00
|
|
|
while (size >= bpf) {
|
2011-03-24 22:10:56 +00:00
|
|
|
/* run input_data for a chunk of data */
|
|
|
|
fft_todo = nfft - (spectrum->num_frames % nfft);
|
|
|
|
msg_todo = spectrum->frames_todo - spectrum->num_frames;
|
|
|
|
GST_LOG_OBJECT (spectrum,
|
2011-11-21 19:31:31 +00:00
|
|
|
"message frames todo: %u, fft frames todo: %u, input frames %"
|
|
|
|
G_GSIZE_FORMAT, msg_todo, fft_todo, (size / bpf));
|
2011-03-24 22:10:56 +00:00
|
|
|
block_size = msg_todo;
|
2011-08-19 12:01:45 +00:00
|
|
|
if (block_size > (size / bpf))
|
|
|
|
block_size = (size / bpf);
|
2011-03-24 22:10:56 +00:00
|
|
|
if (block_size > fft_todo)
|
|
|
|
block_size = fft_todo;
|
|
|
|
|
|
|
|
for (c = 0; c < output_channels; c++) {
|
|
|
|
cd = &spectrum->channel_data[c];
|
|
|
|
input = cd->input;
|
|
|
|
/* Move the current frames into our ringbuffers */
|
2011-08-19 12:01:45 +00:00
|
|
|
input_data (data + c * bps, input, block_size, channels, max_value,
|
2011-03-24 22:10:56 +00:00
|
|
|
input_pos, nfft);
|
|
|
|
}
|
2011-08-19 12:01:45 +00:00
|
|
|
data += block_size * bpf;
|
|
|
|
size -= block_size * bpf;
|
2011-03-24 22:10:56 +00:00
|
|
|
input_pos = (input_pos + block_size) % nfft;
|
|
|
|
spectrum->num_frames += block_size;
|
2010-08-11 12:45:56 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
have_full_interval = (spectrum->num_frames == spectrum->frames_todo);
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-11-21 19:31:31 +00:00
|
|
|
GST_LOG_OBJECT (spectrum,
|
|
|
|
"size: %" G_GSIZE_FORMAT ", do-fft = %d, do-message = %d", size,
|
2011-03-24 22:10:56 +00:00
|
|
|
(spectrum->num_frames % nfft == 0), have_full_interval);
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
/* If we have enough frames for an FFT or we have all frames required for
|
|
|
|
* the interval and we haven't run a FFT, then run an FFT */
|
|
|
|
if ((spectrum->num_frames % nfft == 0) ||
|
|
|
|
(have_full_interval && !spectrum->num_fft)) {
|
|
|
|
for (c = 0; c < output_channels; c++) {
|
|
|
|
cd = &spectrum->channel_data[c];
|
2011-03-09 14:57:28 +00:00
|
|
|
gst_spectrum_run_fft (spectrum, cd, input_pos);
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
}
|
2011-03-24 22:10:56 +00:00
|
|
|
spectrum->num_fft++;
|
2011-03-09 14:57:28 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
/* Do we have the FFTs for one interval? */
|
|
|
|
if (have_full_interval) {
|
|
|
|
GST_DEBUG_OBJECT (spectrum, "nfft: %u frames: %" G_GUINT64_FORMAT
|
|
|
|
" fpi: %" G_GUINT64_FORMAT " error: %" GST_TIME_FORMAT, nfft,
|
|
|
|
spectrum->num_frames, spectrum->frames_per_interval,
|
|
|
|
GST_TIME_ARGS (spectrum->accumulated_error));
|
|
|
|
|
|
|
|
spectrum->frames_todo = spectrum->frames_per_interval;
|
|
|
|
if (spectrum->accumulated_error >= GST_SECOND) {
|
|
|
|
spectrum->accumulated_error -= GST_SECOND;
|
|
|
|
spectrum->frames_todo++;
|
2011-03-09 14:57:28 +00:00
|
|
|
}
|
2011-03-24 22:10:56 +00:00
|
|
|
spectrum->accumulated_error += spectrum->error_per_interval;
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
if (spectrum->post_messages) {
|
|
|
|
GstMessage *m;
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
for (c = 0; c < output_channels; c++) {
|
2011-03-09 14:57:28 +00:00
|
|
|
cd = &spectrum->channel_data[c];
|
2011-03-24 22:10:56 +00:00
|
|
|
gst_spectrum_prepare_message_data (spectrum, cd);
|
2011-03-24 12:14:09 +00:00
|
|
|
}
|
2011-03-22 14:29:53 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
m = gst_spectrum_message_new (spectrum, spectrum->message_ts,
|
|
|
|
spectrum->interval);
|
2010-08-11 12:44:03 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
gst_element_post_message (GST_ELEMENT (spectrum), m);
|
|
|
|
}
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-03-24 22:10:56 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (spectrum->message_ts))
|
|
|
|
spectrum->message_ts +=
|
|
|
|
gst_util_uint64_scale (spectrum->num_frames, GST_SECOND, rate);
|
2011-03-09 14:57:28 +00:00
|
|
|
|
2011-08-16 17:25:29 +00:00
|
|
|
for (c = 0; c < output_channels; c++) {
|
2011-03-24 22:10:56 +00:00
|
|
|
cd = &spectrum->channel_data[c];
|
|
|
|
gst_spectrum_reset_message_data (spectrum, cd);
|
2011-03-09 14:57:28 +00:00
|
|
|
}
|
2011-03-24 22:10:56 +00:00
|
|
|
spectrum->num_frames = 0;
|
|
|
|
spectrum->num_fft = 0;
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
}
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2010-08-11 12:45:56 +00:00
|
|
|
spectrum->input_pos = input_pos;
|
|
|
|
|
2012-01-24 13:38:58 +00:00
|
|
|
gst_buffer_unmap (buffer, &map);
|
2012-02-23 10:16:21 +00:00
|
|
|
g_mutex_unlock (&spectrum->lock);
|
2011-06-30 08:51:55 +00:00
|
|
|
|
2009-01-14 15:44:18 +00:00
|
|
|
g_assert (size == 0);
|
gst/spectrum/: Post a spectrum message on the bus for every interval, even if the interval is small than the length o...
Original commit message from CVS:
* gst/spectrum/Makefile.am:
* gst/spectrum/README:
* gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
(gst_spectrum_class_init), (gst_spectrum_init),
(gst_spectrum_reset_state), (gst_spectrum_finalize),
(gst_spectrum_set_property), (gst_spectrum_start),
(gst_spectrum_stop), (gst_spectrum_setup),
(gst_spectrum_transform_ip):
* gst/spectrum/gstspectrum.h:
Post a spectrum message on the bus for every interval, even
if the interval is small than the length of the FFT.
Fixes bug #567642.
Major cleanup of the spectrum element.
2009-01-14 10:46:54 +00:00
|
|
|
|
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)
2006-06-16 09:49:07 +00:00
|
|
|
return GST_FLOW_OK;
|
gst/spectrum/Makefile.am: Link to base libraries
Original commit message from CVS:
* gst/spectrum/Makefile.am:
Link to base libraries
* gst/spectrum/demo-osssrc.c: (main):
use new threshhold property
* gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
(gst_spectrum_init), (gst_spectrum_dispose),
(gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
(gst_spectrum_get_sink_caps), (gst_spectrum_chain),
(gst_spectrum_change_state):
* gst/spectrum/gstspectrum.h:
Use gst_adapter, support multiple-channels, add threshold property for
result, add docs, fix resulting spectrum range (was including mirrored
results)
2006-05-21 16:23:23 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
return gst_element_register (plugin, "spectrum", GST_RANK_NONE,
|
|
|
|
GST_TYPE_SPECTRUM);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:36:38 +00:00
|
|
|
spectrum,
|
2004-03-14 22:34:33 +00:00
|
|
|
"Run an FFT on the audio signal, output spectrum data",
|
2006-04-01 10:09:11 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|