2001-12-21 12:31:29 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
* 2001 Steve Baker <stevebaker_org@yahoo.co.uk>
|
|
|
|
*
|
|
|
|
* gstsinesrc.c:
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2001-12-23 12:18:18 +00:00
|
|
|
#include <gst/control/control.h>
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
#include <gstsinesrc.h>
|
|
|
|
|
2002-09-18 19:02:52 +00:00
|
|
|
/* elementfactory information */
|
2001-12-21 12:31:29 +00:00
|
|
|
GstElementDetails gst_sinesrc_details = {
|
|
|
|
"Sine-wave src",
|
|
|
|
"Source/Audio",
|
2002-09-18 19:02:52 +00:00
|
|
|
"LGPL",
|
2001-12-21 12:31:29 +00:00
|
|
|
"Create a sine wave of a given frequency and volume",
|
|
|
|
VERSION,
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>",
|
|
|
|
"(C) 1999",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* SineSrc signals and args */
|
|
|
|
enum {
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
2002-10-01 12:03:05 +00:00
|
|
|
/* ARG_WIDTH, */ /* width is not even implemented so no use in having this */
|
2001-12-21 12:31:29 +00:00
|
|
|
ARG_SAMPLERATE,
|
|
|
|
ARG_TABLESIZE,
|
2002-05-05 15:46:05 +00:00
|
|
|
ARG_SAMPLES_PER_BUFFER,
|
2001-12-21 12:31:29 +00:00
|
|
|
ARG_FREQ,
|
|
|
|
ARG_VOLUME,
|
|
|
|
};
|
|
|
|
|
2002-04-11 20:42:27 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (sinesrc_src_factory,
|
2001-12-21 12:31:29 +00:00
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"sinesrc_src",
|
|
|
|
"audio/raw",
|
|
|
|
"format", GST_PROPS_STRING ("int"),
|
2002-10-01 12:03:05 +00:00
|
|
|
"law", GST_PROPS_INT (0),
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (8000, 48000),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
2001-12-21 12:31:29 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
static void gst_sinesrc_class_init (GstSineSrcClass *klass);
|
|
|
|
static void gst_sinesrc_init (GstSineSrc *src);
|
|
|
|
static void gst_sinesrc_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gst_sinesrc_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2002-03-19 04:10:06 +00:00
|
|
|
/*static gboolean gst_sinesrc_change_state(GstElement *element, */
|
|
|
|
/* GstElementState state); */
|
|
|
|
/*static void gst_sinesrc_close_audio(GstSineSrc *src); */
|
|
|
|
/*static gboolean gst_sinesrc_open_audio(GstSineSrc *src); */
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
static void gst_sinesrc_update_freq (const GValue *value,
|
|
|
|
gpointer data);
|
|
|
|
static void gst_sinesrc_populate_sinetable (GstSineSrc *src);
|
|
|
|
static inline void gst_sinesrc_update_table_inc (GstSineSrc *src);
|
|
|
|
static void gst_sinesrc_force_caps (GstSineSrc *src);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
static GstBuffer* gst_sinesrc_get (GstPad *pad);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2002-03-19 04:10:06 +00:00
|
|
|
/*static guint gst_sinesrc_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gst_sinesrc_get_type (void)
|
|
|
|
{
|
|
|
|
static GType sinesrc_type = 0;
|
|
|
|
|
|
|
|
if (!sinesrc_type) {
|
|
|
|
static const GTypeInfo sinesrc_info = {
|
2002-10-01 12:03:05 +00:00
|
|
|
sizeof (GstSineSrcClass), NULL, NULL,
|
|
|
|
(GClassInitFunc) gst_sinesrc_class_init, NULL, NULL,
|
|
|
|
sizeof (GstSineSrc), 0,
|
|
|
|
(GInstanceInitFunc) gst_sinesrc_init,
|
2001-12-21 12:31:29 +00:00
|
|
|
};
|
2002-10-01 12:03:05 +00:00
|
|
|
sinesrc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstSineSrc",
|
|
|
|
&sinesrc_info, 0);
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
return sinesrc_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_sinesrc_class_init (GstSineSrcClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
|
|
|
|
/*
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_WIDTH,
|
|
|
|
g_param_spec_int("width", "Width", "Width of audio data in bits",
|
|
|
|
1, 32, 0, G_PARAM_READWRITE));
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SAMPLERATE,
|
|
|
|
g_param_spec_int ("samplerate","Sample Rate","Sample Rate (in Hz)",
|
2002-10-27 22:29:56 +00:00
|
|
|
8000, 48000, 44100, G_PARAM_READWRITE));
|
2002-10-01 12:03:05 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TABLESIZE,
|
|
|
|
g_param_spec_int ("tablesize", "tablesize", "tablesize",
|
2002-10-27 22:29:56 +00:00
|
|
|
1, G_MAXINT, 1024, G_PARAM_READWRITE));
|
2002-10-01 12:03:05 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
|
|
|
ARG_SAMPLES_PER_BUFFER,
|
|
|
|
g_param_spec_int ("samplesperbuffer", "Samples per buffer",
|
|
|
|
"Number of samples in each outgoing buffer",
|
|
|
|
1, G_MAXINT, 1024, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FREQ,
|
|
|
|
g_param_spec_float ("freq", "Frequency", "Frequency of sine source",
|
|
|
|
0.0, 20000.0, 440.0, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VOLUME,
|
|
|
|
g_param_spec_float ("volume", "Volume", "Volume",
|
|
|
|
0.0, 1.0, 0.8, G_PARAM_READWRITE));
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_sinesrc_set_property;
|
|
|
|
gobject_class->get_property = gst_sinesrc_get_property;
|
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* gstelement_class->change_state = gst_sinesrc_change_state; */
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_sinesrc_init (GstSineSrc *src)
|
|
|
|
{
|
2002-03-04 18:56:24 +00:00
|
|
|
|
2001-12-21 12:31:29 +00:00
|
|
|
src->srcpad = gst_pad_new_from_template (
|
2002-04-11 20:42:27 +00:00
|
|
|
GST_PAD_TEMPLATE_GET (sinesrc_src_factory), "src");
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT(src), src->srcpad);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_pad_set_get_function (src->srcpad, gst_sinesrc_get);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
src->width = 16;
|
2001-12-21 12:31:29 +00:00
|
|
|
src->samplerate = 44100;
|
2002-04-26 09:38:47 +00:00
|
|
|
src->volume = 1.0;
|
|
|
|
src->freq = 440.0;
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
src->newcaps = TRUE;
|
|
|
|
|
|
|
|
src->table_pos = 0.0;
|
|
|
|
src->table_size = 1024;
|
2002-05-05 15:46:05 +00:00
|
|
|
src->samples_per_buffer=1024;
|
2001-12-21 12:31:29 +00:00
|
|
|
src->timestamp=0LL;
|
2002-04-14 10:29:35 +00:00
|
|
|
src->bufpool=NULL;
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
src->seq = 0;
|
|
|
|
|
|
|
|
src->dpman = gst_dpman_new ("sinesrc_dpman", GST_ELEMENT(src));
|
2002-03-04 18:56:24 +00:00
|
|
|
|
|
|
|
gst_dpman_add_required_dparam_callback (
|
|
|
|
src->dpman,
|
|
|
|
g_param_spec_float("freq","Frequency (Hz)","Frequency of the tone",
|
|
|
|
10.0, 10000.0, 350.0, G_PARAM_READWRITE),
|
2002-04-14 10:29:35 +00:00
|
|
|
"hertz",
|
2002-03-04 18:56:24 +00:00
|
|
|
gst_sinesrc_update_freq,
|
|
|
|
src
|
|
|
|
);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-03-04 18:56:24 +00:00
|
|
|
gst_dpman_add_required_dparam_direct (
|
|
|
|
src->dpman,
|
|
|
|
g_param_spec_float("volume","Volume","Volume of the tone",
|
|
|
|
0.0, 1.0, 0.8, G_PARAM_READWRITE),
|
2002-04-14 10:29:35 +00:00
|
|
|
"scalar",
|
2002-03-04 18:56:24 +00:00
|
|
|
&(src->volume)
|
|
|
|
);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-05-29 18:54:19 +00:00
|
|
|
gst_dpman_set_rate(src->dpman, src->samplerate);
|
|
|
|
|
2001-12-21 12:31:29 +00:00
|
|
|
gst_sinesrc_populate_sinetable(src);
|
|
|
|
gst_sinesrc_update_table_inc(src);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstBuffer *
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_get (GstPad *pad)
|
2001-12-21 12:31:29 +00:00
|
|
|
{
|
|
|
|
GstSineSrc *src;
|
|
|
|
GstBuffer *buf;
|
|
|
|
|
|
|
|
gint16 *samples;
|
2002-05-29 18:54:19 +00:00
|
|
|
gint i=0;
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
src = GST_SINESRC(gst_pad_get_parent (pad));
|
|
|
|
|
2002-04-14 10:29:35 +00:00
|
|
|
if (src->bufpool == NULL) {
|
2002-05-05 15:46:05 +00:00
|
|
|
src->bufpool = gst_buffer_pool_get_default (2 * src->samples_per_buffer, 8);
|
2002-04-14 10:29:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buf = (GstBuffer *) gst_buffer_new_from_pool (src->bufpool, 0, 0);
|
|
|
|
GST_BUFFER_TIMESTAMP(buf) = src->timestamp;
|
|
|
|
|
|
|
|
samples = (gint16*)GST_BUFFER_DATA(buf);
|
2001-12-21 12:31:29 +00:00
|
|
|
GST_BUFFER_DATA(buf) = (gpointer) samples;
|
2002-05-29 18:54:19 +00:00
|
|
|
|
|
|
|
GST_DPMAN_PREPROCESS(src->dpman, src->samples_per_buffer, src->timestamp);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-06-02 13:25:39 +00:00
|
|
|
src->timestamp += (gint64)src->samples_per_buffer * GST_SECOND / (gint64)src->samplerate;
|
2002-05-05 15:46:05 +00:00
|
|
|
|
2002-05-29 18:54:19 +00:00
|
|
|
while(GST_DPMAN_PROCESS(src->dpman, i)) {
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
src->table_lookup = (gint)(src->table_pos);
|
|
|
|
src->table_lookup_next = src->table_lookup + 1;
|
|
|
|
src->table_interp = src->table_pos - src->table_lookup;
|
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* wrap the array lookups if we're out of bounds */
|
2001-12-21 12:31:29 +00:00
|
|
|
if (src->table_lookup_next >= src->table_size){
|
|
|
|
src->table_lookup_next -= src->table_size;
|
|
|
|
if (src->table_lookup >= src->table_size){
|
|
|
|
src->table_lookup -= src->table_size;
|
|
|
|
src->table_pos -= src->table_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
src->table_pos += src->table_inc;
|
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/*no interpolation */
|
|
|
|
/*samples[i] = src->table_data[src->table_lookup] */
|
|
|
|
/* * src->volume * 32767.0; */
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/*linear interpolation */
|
2002-05-29 18:54:19 +00:00
|
|
|
samples[i] = ((src->table_interp
|
2001-12-21 12:31:29 +00:00
|
|
|
*(src->table_data[src->table_lookup_next]
|
|
|
|
-src->table_data[src->table_lookup]
|
|
|
|
)
|
|
|
|
)+src->table_data[src->table_lookup]
|
|
|
|
)* src->volume * 32767.0;
|
2002-05-29 18:54:19 +00:00
|
|
|
i++;
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2002-04-14 10:29:35 +00:00
|
|
|
|
2001-12-21 12:31:29 +00:00
|
|
|
if (src->newcaps) {
|
|
|
|
gst_sinesrc_force_caps(src);
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_set_property (GObject *object, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec)
|
2001-12-21 12:31:29 +00:00
|
|
|
{
|
|
|
|
GstSineSrc *src;
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
g_return_if_fail (GST_IS_SINESRC (object));
|
|
|
|
src = GST_SINESRC (object);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2002-10-01 20:45:29 +00:00
|
|
|
/*
|
2002-10-01 12:03:05 +00:00
|
|
|
case ARG_WIDTH:
|
|
|
|
src->width = g_value_get_int (value);
|
|
|
|
src->newcaps = TRUE;
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
2002-10-01 20:45:29 +00:00
|
|
|
*/
|
2001-12-21 12:31:29 +00:00
|
|
|
case ARG_SAMPLERATE:
|
|
|
|
src->samplerate = g_value_get_int (value);
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_dpman_set_rate (src->dpman, src->samplerate);
|
|
|
|
src->newcaps = TRUE;
|
|
|
|
gst_sinesrc_update_table_inc (src);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
|
|
|
case ARG_TABLESIZE:
|
|
|
|
src->table_size = g_value_get_int (value);
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_populate_sinetable (src);
|
|
|
|
gst_sinesrc_update_table_inc (src);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
2002-05-05 15:46:05 +00:00
|
|
|
case ARG_SAMPLES_PER_BUFFER:
|
|
|
|
src->samples_per_buffer = g_value_get_int (value);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
|
|
|
case ARG_FREQ:
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_dpman_bypass_dparam (src->dpman, "freq");
|
|
|
|
gst_sinesrc_update_freq (value, src);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
|
|
|
case ARG_VOLUME:
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_dpman_bypass_dparam (src->dpman, "volume");
|
2002-04-02 09:05:33 +00:00
|
|
|
src->volume = g_value_get_float (value);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_get_property (GObject *object, guint prop_id,
|
|
|
|
GValue *value, GParamSpec *pspec)
|
2001-12-21 12:31:29 +00:00
|
|
|
{
|
|
|
|
GstSineSrc *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail(GST_IS_SINESRC(object));
|
|
|
|
src = GST_SINESRC(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2002-10-01 20:45:29 +00:00
|
|
|
/*
|
2002-10-01 12:03:05 +00:00
|
|
|
case ARG_WIDTH:
|
|
|
|
g_value_set_int (value, src->width);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
2002-10-01 20:45:29 +00:00
|
|
|
*/
|
2001-12-21 12:31:29 +00:00
|
|
|
case ARG_SAMPLERATE:
|
|
|
|
g_value_set_int (value, src->samplerate);
|
|
|
|
break;
|
|
|
|
case ARG_TABLESIZE:
|
|
|
|
g_value_set_int (value, src->table_size);
|
|
|
|
break;
|
2002-05-05 15:46:05 +00:00
|
|
|
case ARG_SAMPLES_PER_BUFFER:
|
|
|
|
g_value_set_int (value, src->samples_per_buffer);
|
2001-12-21 12:31:29 +00:00
|
|
|
break;
|
|
|
|
case ARG_FREQ:
|
|
|
|
g_value_set_float (value, src->freq);
|
|
|
|
break;
|
|
|
|
case ARG_VOLUME:
|
|
|
|
g_value_set_float (value, src->volume);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
static gboolean gst_sinesrc_change_state(GstElement *element,
|
|
|
|
GstElementState state) {
|
|
|
|
g_return_if_fail(GST_IS_SINESRC(element));
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case GST_STATE_RUNNING:
|
|
|
|
if (!gst_sinesrc_open_audio(GST_SINESRC(element)))
|
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
case ~GST_STATE_RUNNING:
|
|
|
|
gst_sinesrc_close_audio(GST_SINESRC(element));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS(parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS(parent_class)->change_state(element,state);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_sinesrc_populate_sinetable (GstSineSrc *src)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gdouble pi2scaled = M_PI * 2 / src->table_size;
|
2002-10-01 12:03:05 +00:00
|
|
|
gfloat *table = g_new (gfloat, src->table_size);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
for(i=0 ; i < src->table_size ; i++){
|
2002-10-01 12:03:05 +00:00
|
|
|
table[i] = (gfloat) sin(i * pi2scaled);
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
g_free (src->table_data);
|
2001-12-21 12:31:29 +00:00
|
|
|
src->table_data = table;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_update_freq (const GValue *value, gpointer data)
|
2001-12-21 12:31:29 +00:00
|
|
|
{
|
2002-10-01 12:03:05 +00:00
|
|
|
GstSineSrc *src = (GstSineSrc *) data;
|
|
|
|
g_return_if_fail (GST_IS_SINESRC (src));
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
src->freq = g_value_get_float (value);
|
2001-12-21 12:31:29 +00:00
|
|
|
src->table_inc = src->table_size * src->freq / src->samplerate;
|
|
|
|
|
2002-03-24 22:07:03 +00:00
|
|
|
/*GST_DEBUG(GST_CAT_PARAMS, "freq %f", src->freq); */
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
gst_sinesrc_update_table_inc (GstSineSrc *src)
|
|
|
|
{
|
|
|
|
src->table_inc = src->table_size * src->freq / src->samplerate;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_sinesrc_force_caps (GstSineSrc *src) {
|
2001-12-21 12:31:29 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
if (!src->newcaps)
|
|
|
|
return;
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
src->newcaps = FALSE;
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-01-13 22:27:25 +00:00
|
|
|
caps = GST_CAPS_NEW (
|
|
|
|
"sinesrc_src_caps",
|
|
|
|
"audio/raw",
|
|
|
|
"format", GST_PROPS_STRING ("int"),
|
|
|
|
"law", GST_PROPS_INT (0),
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"rate", GST_PROPS_INT (src->samplerate),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
|
|
|
);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-01-13 22:27:25 +00:00
|
|
|
gst_pad_try_set_caps (src->srcpad, caps);
|
2001-12-21 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
factory = gst_element_factory_new ("sinesrc", GST_TYPE_SINESRC,
|
|
|
|
&gst_sinesrc_details);
|
|
|
|
g_return_val_if_fail (factory != NULL, FALSE);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
2002-10-01 12:03:05 +00:00
|
|
|
gst_element_factory_add_pad_template (factory,
|
|
|
|
GST_PAD_TEMPLATE_GET (sinesrc_src_factory));
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
|
|
|
2002-08-11 12:20:43 +00:00
|
|
|
/* initialize dparam support library */
|
|
|
|
gst_control_init(NULL,NULL);
|
2001-12-21 12:31:29 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"sinesrc",
|
|
|
|
plugin_init
|
|
|
|
};
|