2007-08-12 20:19:37 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Sebastian Dröge <slomo@circular-chaos.org>
|
|
|
|
*
|
2008-02-07 21:57:54 +00:00
|
|
|
* audiowsinclimit.c: Unit test for the audiowsinclimit element
|
2007-08-12 20:19:37 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/base/gstbasetransform.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* For ease of programming we use globals to keep refs for our floating
|
|
|
|
* src and sink pads we create; otherwise we always have to do get_pad,
|
|
|
|
* get_peer, and then remove references in every test function */
|
|
|
|
GstPad *mysrcpad, *mysinkpad;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
#define AUDIO_WSINC_LIMIT_CAPS_STRING_32 \
|
2007-08-19 19:01:45 +00:00
|
|
|
"audio/x-raw-float, " \
|
|
|
|
"channels = (int) 1, " \
|
|
|
|
"rate = (int) 44100, " \
|
|
|
|
"endianness = (int) BYTE_ORDER, " \
|
|
|
|
"width = (int) 32" \
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
#define AUDIO_WSINC_LIMIT_CAPS_STRING_64 \
|
2007-08-12 20:19:37 +00:00
|
|
|
"audio/x-raw-float, " \
|
|
|
|
"channels = (int) 1, " \
|
|
|
|
"rate = (int) 44100, " \
|
|
|
|
"endianness = (int) BYTE_ORDER, " \
|
|
|
|
"width = (int) 64" \
|
|
|
|
|
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-raw-float, "
|
|
|
|
"channels = (int) 1, "
|
|
|
|
"rate = (int) 44100, "
|
2007-08-19 19:01:45 +00:00
|
|
|
"endianness = (int) BYTE_ORDER, " "width = (int) { 32, 64 } ")
|
2007-08-12 20:19:37 +00:00
|
|
|
);
|
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-raw-float, "
|
|
|
|
"channels = (int) 1, "
|
|
|
|
"rate = (int) 44100, "
|
2007-08-19 19:01:45 +00:00
|
|
|
"endianness = (int) BYTE_ORDER, " "width = (int) { 32, 64 } ")
|
2007-08-12 20:19:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
GstElement *
|
2008-02-07 21:57:54 +00:00
|
|
|
setup_audiowsinclimit ()
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
GST_DEBUG ("setup_audiowsinclimit");
|
|
|
|
audiowsinclimit = gst_check_setup_element ("audiowsinclimit");
|
|
|
|
mysrcpad = gst_check_setup_src_pad (audiowsinclimit, &srctemplate, NULL);
|
|
|
|
mysinkpad = gst_check_setup_sink_pad (audiowsinclimit, &sinktemplate, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_pad_set_active (mysrcpad, TRUE);
|
|
|
|
gst_pad_set_active (mysinkpad, TRUE);
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
return audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (GstElement * audiowsinclimit)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GST_DEBUG ("cleanup_audiowsinclimit");
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
|
|
|
|
g_list_free (buffers);
|
|
|
|
buffers = NULL;
|
|
|
|
|
|
|
|
gst_pad_set_active (mysrcpad, FALSE);
|
|
|
|
gst_pad_set_active (mysinkpad, FALSE);
|
2008-02-07 21:57:54 +00:00
|
|
|
gst_check_teardown_src_pad (audiowsinclimit);
|
|
|
|
gst_check_teardown_sink_pad (audiowsinclimit);
|
|
|
|
gst_check_teardown_element (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at 0 is preserved with lowpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_START_TEST (test_32_lp_0hz)
|
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-19 19:01:45 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *in, *res, rms;
|
|
|
|
gint i;
|
|
|
|
GList *node;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-19 19:01:45 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
|
|
|
/* cutoff = sampling rate / 4, data = 0 */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gfloat));
|
|
|
|
in = (gfloat *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_32);
|
2007-08-19 19:01:45 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
|
|
|
/* ... and puts a new buffer on the global list */
|
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
|
|
|
|
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
|
|
|
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gfloat *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gfloat);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms >= 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-19 19:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at rate/2 is erased with lowpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
|
|
|
GST_START_TEST (test_32_lp_22050hz)
|
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-19 19:01:45 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *in, *res, rms;
|
|
|
|
gint i;
|
|
|
|
GList *node;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-19 19:01:45 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gfloat));
|
|
|
|
in = (gfloat *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i += 2) {
|
|
|
|
in[i] = 1.0;
|
|
|
|
in[i + 1] = -1.0;
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_32);
|
2007-08-19 19:01:45 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
|
|
|
/* ... and puts a new buffer on the global list */
|
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
|
|
|
|
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
|
|
|
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gfloat *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gfloat);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms <= 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-19 19:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at 0 is erased with highpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
|
|
|
GST_START_TEST (test_32_hp_0hz)
|
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-19 19:01:45 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *in, *res, rms;
|
|
|
|
gint i;
|
|
|
|
GList *node;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-19 19:01:45 +00:00
|
|
|
/* Set to highpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 1, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gfloat));
|
|
|
|
in = (gfloat *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_32);
|
2007-08-19 19:01:45 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
|
|
|
/* ... and puts a new buffer on the global list */
|
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
|
|
|
|
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
|
|
|
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gfloat *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gfloat);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms <= 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-19 19:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at rate/2 is preserved with highpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
|
|
|
GST_START_TEST (test_32_hp_22050hz)
|
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-19 19:01:45 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *in, *res, rms;
|
|
|
|
gint i;
|
|
|
|
GList *node;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-19 19:01:45 +00:00
|
|
|
/* Set to highpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 1, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gfloat));
|
|
|
|
in = (gfloat *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i += 2) {
|
|
|
|
in[i] = 1.0;
|
|
|
|
in[i + 1] = -1.0;
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_32);
|
2007-08-19 19:01:45 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
|
|
|
/* ... and puts a new buffer on the global list */
|
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL);
|
|
|
|
|
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
|
|
|
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gfloat *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gfloat);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms >= 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-19 19:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if buffers smaller than the kernel size are handled
|
|
|
|
* correctly without accessing wrong memory areas */
|
|
|
|
GST_START_TEST (test_32_small_buffer)
|
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-19 19:01:45 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *in;
|
|
|
|
gint i;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-19 19:01:45 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 101, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-19 19:01:45 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (20 * sizeof (gfloat));
|
|
|
|
in = (gfloat *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 20; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_32);
|
2007-08-19 19:01:45 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
|
|
|
/* ... and puts a new buffer on the global list */
|
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
|
|
|
fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL);
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-19 19:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at 0 is preserved with lowpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
|
|
|
GST_START_TEST (test_64_lp_0hz)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gdouble *in, *res, rms;
|
|
|
|
gint i;
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
GList *node;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-12 20:19:37 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-12 20:19:37 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
|
|
|
/* cutoff = sampling rate / 4, data = 0 */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gdouble));
|
|
|
|
in = (gdouble *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_64);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
2007-08-12 20:19:37 +00:00
|
|
|
/* ... and puts a new buffer on the global list */
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gdouble *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gdouble);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms >= 0.9);
|
|
|
|
}
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at rate/2 is erased with lowpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_START_TEST (test_64_lp_22050hz)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gdouble *in, *res, rms;
|
|
|
|
gint i;
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
GList *node;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-12 20:19:37 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-12 20:19:37 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gdouble));
|
|
|
|
in = (gdouble *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i += 2) {
|
|
|
|
in[i] = 1.0;
|
|
|
|
in[i + 1] = -1.0;
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_64);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
2007-08-12 20:19:37 +00:00
|
|
|
/* ... and puts a new buffer on the global list */
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gdouble *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gdouble);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms <= 0.1);
|
|
|
|
}
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at 0 is erased with highpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_START_TEST (test_64_hp_0hz)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gdouble *in, *res, rms;
|
|
|
|
gint i;
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
GList *node;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-12 20:19:37 +00:00
|
|
|
/* Set to highpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 1, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-12 20:19:37 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gdouble));
|
|
|
|
in = (gdouble *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_64);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
2007-08-12 20:19:37 +00:00
|
|
|
/* ... and puts a new buffer on the global list */
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gdouble *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gdouble);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms <= 0.1);
|
|
|
|
}
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if data containing only one frequency component
|
|
|
|
* at rate/2 is preserved with highpass mode and a cutoff
|
|
|
|
* at rate/4 */
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_START_TEST (test_64_hp_22050hz)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gdouble *in, *res, rms;
|
|
|
|
gint i;
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
GList *node;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-12 20:19:37 +00:00
|
|
|
/* Set to highpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 1, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 21, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-12 20:19:37 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (128 * sizeof (gdouble));
|
|
|
|
in = (gdouble *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 128; i += 2) {
|
|
|
|
in[i] = 1.0;
|
|
|
|
in[i + 1] = -1.0;
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_64);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
2007-08-12 20:19:37 +00:00
|
|
|
/* ... and puts a new buffer on the global list */
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
2007-08-12 20:19:37 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL);
|
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
for (node = buffers; node; node = node->next) {
|
|
|
|
gint buffer_length;
|
2007-08-12 20:19:37 +00:00
|
|
|
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) node->data) == NULL);
|
|
|
|
|
|
|
|
res = (gdouble *) GST_BUFFER_DATA (outbuffer);
|
|
|
|
buffer_length = GST_BUFFER_SIZE (outbuffer) / sizeof (gdouble);
|
|
|
|
rms = 0.0;
|
|
|
|
for (i = 0; i < buffer_length; i++)
|
|
|
|
rms += res[i] * res[i];
|
|
|
|
rms = sqrt (rms / buffer_length);
|
|
|
|
fail_unless (rms >= 0.9);
|
|
|
|
}
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
/* Test if buffers smaller than the kernel size are handled
|
|
|
|
* correctly without accessing wrong memory areas */
|
2007-08-19 19:01:45 +00:00
|
|
|
GST_START_TEST (test_64_small_buffer)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
GstElement *audiowsinclimit;
|
2007-08-12 20:19:37 +00:00
|
|
|
GstBuffer *inbuffer, *outbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
gdouble *in;
|
|
|
|
gint i;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit = setup_audiowsinclimit ();
|
2007-08-12 20:19:37 +00:00
|
|
|
/* Set to lowpass */
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "mode", 0, NULL);
|
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "length", 101, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
fail_unless (gst_element_set_state (audiowsinclimit,
|
2007-08-12 20:19:37 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
g_object_set (G_OBJECT (audiowsinclimit), "cutoff", 44100 / 4.0, NULL);
|
2007-08-12 20:19:37 +00:00
|
|
|
inbuffer = gst_buffer_new_and_alloc (20 * sizeof (gdouble));
|
|
|
|
in = (gdouble *) GST_BUFFER_DATA (inbuffer);
|
|
|
|
for (i = 0; i < 20; i++)
|
|
|
|
in[i] = 1.0;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
caps = gst_caps_from_string (AUDIO_WSINC_LIMIT_CAPS_STRING_64);
|
2007-08-12 20:19:37 +00:00
|
|
|
gst_buffer_set_caps (inbuffer, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
|
|
|
|
/* pushing gives away my reference ... */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
|
2007-08-12 20:19:37 +00:00
|
|
|
/* ... and puts a new buffer on the global list */
|
gst/filter/gstlpwsinc.*: Implement latency query and only forward those samples downstream that actually contain the ...
Original commit message from CVS:
* gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
(gst_lpwsinc_init), (process_32), (process_64),
(lpwsinc_build_kernel), (lpwsinc_push_residue),
(lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
(lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
* gst/filter/gstlpwsinc.h:
Implement latency query and only forward those samples downstream
that actually contain the data we want, i.e. drop kernel_length/2
in the beginning and append kernel_length/2 (created by convolving
the filter kernel with zeroes) to the end.
* tests/check/elements/lpwsinc.c: (GST_START_TEST):
Adjust the unit test for this slightly changed behaviour.
2007-08-16 09:48:27 +00:00
|
|
|
fail_unless (g_list_length (buffers) >= 1);
|
2007-08-12 20:19:37 +00:00
|
|
|
fail_if ((outbuffer = (GstBuffer *) buffers->data) == NULL);
|
|
|
|
|
|
|
|
/* cleanup */
|
2008-02-07 21:57:54 +00:00
|
|
|
cleanup_audiowsinclimit (audiowsinclimit);
|
2007-08-12 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
Suite *
|
2008-02-07 21:57:54 +00:00
|
|
|
audiowsinclimit_suite (void)
|
2007-08-12 20:19:37 +00:00
|
|
|
{
|
2008-02-07 21:57:54 +00:00
|
|
|
Suite *s = suite_create ("audiowsinclimit");
|
2007-08-12 20:19:37 +00:00
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
2007-08-19 19:01:45 +00:00
|
|
|
tcase_add_test (tc_chain, test_32_lp_0hz);
|
|
|
|
tcase_add_test (tc_chain, test_32_lp_22050hz);
|
|
|
|
tcase_add_test (tc_chain, test_32_hp_0hz);
|
|
|
|
tcase_add_test (tc_chain, test_32_hp_22050hz);
|
|
|
|
tcase_add_test (tc_chain, test_32_small_buffer);
|
|
|
|
tcase_add_test (tc_chain, test_64_lp_0hz);
|
|
|
|
tcase_add_test (tc_chain, test_64_lp_22050hz);
|
|
|
|
tcase_add_test (tc_chain, test_64_hp_0hz);
|
|
|
|
tcase_add_test (tc_chain, test_64_hp_22050hz);
|
|
|
|
tcase_add_test (tc_chain, test_64_small_buffer);
|
2007-08-12 20:19:37 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int nf;
|
|
|
|
|
2008-02-07 21:57:54 +00:00
|
|
|
Suite *s = audiowsinclimit_suite ();
|
2007-08-12 20:19:37 +00:00
|
|
|
SRunner *sr = srunner_create (s);
|
|
|
|
|
|
|
|
gst_check_init (&argc, &argv);
|
|
|
|
|
|
|
|
srunner_run_all (sr, CK_NORMAL);
|
|
|
|
nf = srunner_ntests_failed (sr);
|
|
|
|
srunner_free (sr);
|
|
|
|
|
|
|
|
return nf;
|
|
|
|
}
|