Skip to content
Snippets Groups Projects
Commit c759b196 authored by Aaron Viets's avatar Aaron Viets
Browse files

gstlal-calibration: lal_add_constant: Added floats to caps.

parent 1b81b229
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
/*
* ============================================================================
*
* Preamble
* Preamble
*
* ============================================================================
*/
......@@ -48,7 +48,7 @@
/*
* ============================================================================
*
* GStreamer Boiler Plate
* GStreamer Boiler Plate
*
* ============================================================================
*/
......@@ -71,7 +71,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE(
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS(
GST_AUDIO_CAPS_MAKE(GST_AUDIO_NE(F64)) ", " \
GST_AUDIO_CAPS_MAKE("{" GST_AUDIO_NE(F32) ", " GST_AUDIO_NE(F64) "}") ", " \
"layout = (string) interleaved, " \
"channel-mask = (bitmask) 0"
)
......@@ -83,7 +83,7 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE(
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS(
GST_AUDIO_CAPS_MAKE(GST_AUDIO_NE(F64)) ", " \
GST_AUDIO_CAPS_MAKE("{" GST_AUDIO_NE(F32) ", " GST_AUDIO_NE(F64) "}") ", " \
"layout = (string) interleaved, " \
"channel-mask = (bitmask) 0"
)
......@@ -93,12 +93,81 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE(
/*
* ============================================================================
*
* GstBaseTransform Method Overrides
* GstBaseTransform Method Overrides
*
* ============================================================================
*/
/*
* get_unit_size()
*/
static gboolean get_unit_size(GstBaseTransform *trans, GstCaps *caps, gsize *size)
{
GstAudioInfo info;
gboolean success = TRUE;
success &= gst_audio_info_from_caps(&info, caps);
if(success) {
*size = GST_AUDIO_INFO_BPF(&info);
} else
GST_WARNING_OBJECT(trans, "unable to parse caps %" GST_PTR_FORMAT, caps);
return success;
}
/*
* set_caps()
*/
static gboolean set_caps(GstBaseTransform *trans, GstCaps *incaps, GstCaps *outcaps)
{
GSTLALAddConstant *element = GSTLAL_ADD_CONSTANT(trans);
gint rate_in, rate_out;
gsize unit_size;
/*
* parse the caps
*/
if(!get_unit_size(trans, incaps, &unit_size)) {
GST_DEBUG_OBJECT(element, "function 'get_unit_size' failed");
return FALSE;
}
if(!gst_structure_get_int(gst_caps_get_structure(incaps, 0), "rate", &rate_in)) {
GST_DEBUG_OBJECT(element, "unable to parse rate from %" GST_PTR_FORMAT, incaps);
return FALSE;
}
if(!gst_structure_get_int(gst_caps_get_structure(outcaps, 0), "rate", &rate_out)) {
GST_DEBUG_OBJECT(element, "unable to parse rate from %" GST_PTR_FORMAT, outcaps);
return FALSE;
}
/*
* require the output rate to be equal to the input rate
*/
if(rate_out != rate_in) {
GST_ERROR_OBJECT(element, "output rate is not equal to input rate. input caps = %" GST_PTR_FORMAT " output caps = %" GST_PTR_FORMAT, incaps, outcaps);
return FALSE;
}
/*
* record stream parameters
*/
element->rate = rate_in;
element->unit_size = unit_size;
return TRUE;
}
/*
* transform_ip()
*/
......@@ -110,17 +179,32 @@ static GstFlowReturn transform_ip(GstBaseTransform *trans, GstBuffer *buf)
GstMapInfo mapinfo;
GstFlowReturn result = GST_FLOW_OK;
gdouble value = element->value;
gdouble *addr, *end;
GST_BUFFER_FLAG_UNSET(buf, GST_BUFFER_FLAG_GAP);
gst_buffer_map(buf, &mapinfo, GST_MAP_READWRITE);
g_assert(mapinfo.size % sizeof(gdouble) == 0);
addr = (gdouble *) mapinfo.data;
end = (gdouble *) (mapinfo.data + mapinfo.size);
while(addr < end)
*addr++ += value;
if(element->unit_size == 4) {
gfloat *addr, *end;
g_assert(mapinfo.size % sizeof(gfloat) == 0);
addr = (gfloat *) mapinfo.data;
end = (gfloat *) (mapinfo.data + mapinfo.size);
while(addr < end)
*addr++ += value;
} else if(element->unit_size == 8) {
gdouble *addr, *end;
g_assert(mapinfo.size % sizeof(gdouble) == 0);
addr = (gdouble *) mapinfo.data;
end = (gdouble *) (mapinfo.data + mapinfo.size);
while(addr < end)
*addr++ += value;
} else {
g_assert_not_reached();
}
gst_buffer_unmap(buf, &mapinfo);
......@@ -131,7 +215,7 @@ static GstFlowReturn transform_ip(GstBaseTransform *trans, GstBuffer *buf)
/*
* ============================================================================
*
* GObject Method Overrides
* GObject Method Overrides
*
* ============================================================================
*/
......@@ -232,6 +316,8 @@ static void gstlal_add_constant_class_init(GSTLALAddConstantClass *klass)
gst_element_class_add_pad_template(element_class, gst_static_pad_template_get(&src_factory));
gst_element_class_add_pad_template(element_class, gst_static_pad_template_get(&sink_factory));
transform_class->get_unit_size = GST_DEBUG_FUNCPTR(get_unit_size);
transform_class->set_caps = GST_DEBUG_FUNCPTR(set_caps);
transform_class->transform_ip = GST_DEBUG_FUNCPTR(transform_ip);
}
......
......@@ -75,6 +75,11 @@ typedef struct _GSTLALAddConstantClass GSTLALAddConstantClass;
struct _GSTLALAddConstant {
GstBaseTransform element;
/* stream info */
gint unit_size;
gint rate;
/* properties */
gdouble value;
};
......
#!/usr/bin/env python
# Copyright (C) 2016 Aaron Viets
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# =============================================================================
#
# Preamble
#
# =============================================================================
#
import numpy
import sys
from gstlal import pipeparts
import test_common
#
# =============================================================================
#
# Pipelines
#
# =============================================================================
#
def lal_add_constant_01(pipeline, name):
#
# This test adds a constant to a stream of single-precision floats
#
rate = 1000 # Hz
buffer_length = 1.0 # seconds
test_duration = 10.0 # seconds
#
# build pipeline
#
src = test_common.test_src(pipeline, buffer_length = buffer_length, rate = rate, test_duration = test_duration, width = 32)
capsfilter1 = pipeparts.mkcapsfilter(pipeline, src, "audio/x-raw, format=F32LE, rate=%d" % int(rate))
tee1 = pipeparts.mktee(pipeline, capsfilter1)
pipeparts.mknxydumpsink(pipeline, pipeparts.mkqueue(pipeline, tee1), "%s_in.dump" % name)
add_constant = pipeparts.mkgeneric(pipeline, tee1, "lal_add_constant", value=3)
capsfilter2 = pipeparts.mkcapsfilter(pipeline, add_constant, "audio/x-raw, format=F32LE, rate=%d" % int(rate))
pipeparts.mknxydumpsink(pipeline, pipeparts.mkqueue(pipeline, capsfilter2), "%s_out.dump" % name)
#
# done
#
return pipeline
def lal_add_constant_02(pipeline, name):
#
# This test adds a constant to a stream of double-precision floats
#
rate = 1000 # Hz
buffer_length = 1.0 # seconds
test_duration = 10.0 # seconds
#
# build pipeline
#
src = test_common.test_src(pipeline, buffer_length = buffer_length, rate = rate, test_duration = test_duration, width = 64)
capsfilter1 = pipeparts.mkcapsfilter(pipeline, src, "audio/x-raw, format=F64LE, rate=%d" % int(rate))
tee1 = pipeparts.mktee(pipeline, capsfilter1)
pipeparts.mknxydumpsink(pipeline, pipeparts.mkqueue(pipeline, tee1), "%s_in.dump" % name)
add_constant = pipeparts.mkgeneric(pipeline, tee1, "lal_add_constant", value=3)
capsfilter2 = pipeparts.mkcapsfilter(pipeline, add_constant, "audio/x-raw, format=F64LE, rate=%d" % int(rate))
pipeparts.mknxydumpsink(pipeline, pipeparts.mkqueue(pipeline, capsfilter2), "%s_out.dump" % name)
#
# done
#
return pipeline
#
# =============================================================================
#
# Main
#
# =============================================================================
#
#test_common.build_and_run(lal_add_constant_01, "lal_add_constant_01")
test_common.build_and_run(lal_add_constant_02, "lal_add_constant_02")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment