2001-12-22 23:27:17 +00:00
|
|
|
/* -*- c-basic-offset: 2 -*-
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 1999-2001 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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 <string.h>
|
|
|
|
#include <gst/gst.h>
|
2001-12-23 12:18:18 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2002-04-28 16:07:41 +00:00
|
|
|
#include <gst/control/control.h>
|
2001-12-22 23:27:17 +00:00
|
|
|
#include "gstvolume.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static GstElementDetails volume_details = {
|
|
|
|
"Volume",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Filter/Audio/Effect",
|
2001-12-22 23:27:17 +00:00
|
|
|
"Set volume on audio/raw streams",
|
|
|
|
VERSION,
|
|
|
|
"Andy Wingo <apwingo@eos.ncsu.edu>",
|
|
|
|
"(C) 2001"
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Filter signals and args */
|
|
|
|
enum {
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_SILENT,
|
2002-04-28 16:07:41 +00:00
|
|
|
ARG_MUTE,
|
2001-12-22 23:27:17 +00:00
|
|
|
ARG_VOLUME
|
|
|
|
};
|
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (volume_sink_factory,
|
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"volume_float_sink",
|
|
|
|
"audio/raw",
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"format", GST_PROPS_STRING ("float"),
|
|
|
|
"layout", GST_PROPS_STRING ("gfloat"),
|
|
|
|
"intercept", GST_PROPS_FLOAT(0.0),
|
|
|
|
"slope", GST_PROPS_FLOAT(1.0),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
|
|
|
),
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"volume_int_sink",
|
|
|
|
"audio/raw",
|
|
|
|
"format", GST_PROPS_STRING ("int"),
|
|
|
|
"channels", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"law", GST_PROPS_INT (0),
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (TRUE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
GST_PAD_TEMPLATE_FACTORY (volume_src_factory,
|
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"volume_float_src",
|
|
|
|
"audio/raw",
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"format", GST_PROPS_STRING ("float"),
|
|
|
|
"layout", GST_PROPS_STRING ("gfloat"),
|
|
|
|
"intercept", GST_PROPS_FLOAT(0.0),
|
|
|
|
"slope", GST_PROPS_FLOAT(1.0),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
|
|
|
),
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"volume_int_src",
|
|
|
|
"audio/raw",
|
|
|
|
"format", GST_PROPS_STRING ("int"),
|
|
|
|
"channels", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1, G_MAXINT),
|
|
|
|
"law", GST_PROPS_INT (0),
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (TRUE)
|
|
|
|
)
|
|
|
|
);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
static void volume_class_init (GstVolumeClass *klass);
|
|
|
|
static void volume_init (GstVolume *filter);
|
|
|
|
|
|
|
|
static void volume_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
|
2002-04-28 16:07:41 +00:00
|
|
|
static void volume_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
|
|
|
|
static void volume_update_volume (const GValue *value, gpointer data);
|
|
|
|
static void volume_update_mute (const GValue *value, gpointer data);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
static gboolean volume_parse_caps (GstVolume *filter, GstCaps *caps);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
static void volume_chain_float (GstPad *pad, GstBuffer *buf);
|
|
|
|
static void volume_chain_int16 (GstPad *pad, GstBuffer *buf);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2002-03-19 04:10:06 +00:00
|
|
|
/*static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
static GstBufferPool*
|
|
|
|
volume_get_bufferpool (GstPad *pad)
|
|
|
|
{
|
|
|
|
GstVolume *filter;
|
|
|
|
|
|
|
|
filter = GST_VOLUME (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
return gst_pad_get_bufferpool (filter->srcpad);
|
|
|
|
}
|
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
static GstPadConnectReturn
|
2002-02-19 05:59:06 +00:00
|
|
|
volume_connect (GstPad *pad, GstCaps *caps)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2002-02-17 02:06:04 +00:00
|
|
|
GstVolume *filter;
|
2002-02-19 05:59:06 +00:00
|
|
|
GstPad *otherpad;
|
2002-05-29 18:56:23 +00:00
|
|
|
gint rate;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
filter = GST_VOLUME (gst_pad_get_parent (pad));
|
|
|
|
g_return_val_if_fail (filter != NULL, GST_PAD_CONNECT_REFUSED);
|
|
|
|
g_return_val_if_fail (GST_IS_VOLUME (filter), GST_PAD_CONNECT_REFUSED);
|
2002-02-19 05:59:06 +00:00
|
|
|
otherpad = (pad == filter->srcpad ? filter->sinkpad : filter->srcpad);
|
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
if (GST_CAPS_IS_FIXED (caps)) {
|
2002-09-10 09:31:40 +00:00
|
|
|
GstPadConnectReturn set_retval;
|
|
|
|
if (!volume_parse_caps (filter, caps))
|
2002-02-17 02:06:04 +00:00
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
2002-09-10 09:31:40 +00:00
|
|
|
|
|
|
|
if ((set_retval = gst_pad_try_set_caps(otherpad, caps)) > 0)
|
|
|
|
if (gst_caps_get_int (caps, "rate", &rate)){
|
|
|
|
gst_dpman_set_rate(filter->dpman, rate);
|
|
|
|
}
|
|
|
|
return set_retval;
|
2002-02-17 02:06:04 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
return GST_PAD_CONNECT_DELAYED;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2002-02-17 02:06:04 +00:00
|
|
|
static gboolean
|
2001-12-22 23:27:17 +00:00
|
|
|
volume_parse_caps (GstVolume *filter, GstCaps *caps)
|
|
|
|
{
|
|
|
|
const gchar *format;
|
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
g_return_val_if_fail(filter!=NULL,FALSE);
|
|
|
|
g_return_val_if_fail(caps!=NULL,FALSE);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-03-30 17:06:26 +00:00
|
|
|
gst_caps_get_string (caps, "format", &format);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
if (strcmp(format, "int")==0) {
|
2002-04-28 16:07:41 +00:00
|
|
|
gst_pad_set_chain_function(filter->sinkpad,volume_chain_int16);
|
|
|
|
return TRUE;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2002-04-28 16:07:41 +00:00
|
|
|
|
|
|
|
if (strcmp(format, "float")==0) {
|
|
|
|
gst_pad_set_chain_function(filter->sinkpad,volume_chain_float);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_volume_get_type(void) {
|
|
|
|
static GType volume_type = 0;
|
|
|
|
|
|
|
|
if (!volume_type) {
|
|
|
|
static const GTypeInfo volume_info = {
|
|
|
|
sizeof(GstVolumeClass), NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)volume_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstVolume),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc)volume_init,
|
|
|
|
};
|
|
|
|
volume_type = g_type_register_static(GST_TYPE_ELEMENT, "GstVolume", &volume_info, 0);
|
|
|
|
}
|
|
|
|
return volume_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
volume_class_init (GstVolumeClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass*)klass;
|
|
|
|
gstelement_class = (GstElementClass*)klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
|
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_MUTE,
|
|
|
|
g_param_spec_boolean("mute","mute","mute",
|
2001-12-22 23:27:17 +00:00
|
|
|
FALSE,G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_VOLUME,
|
|
|
|
g_param_spec_float("volume","volume","volume",
|
2002-05-05 15:42:48 +00:00
|
|
|
0.0,4.0,1.0,G_PARAM_READWRITE));
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = volume_set_property;
|
|
|
|
gobject_class->get_property = volume_get_property;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
volume_init (GstVolume *filter)
|
|
|
|
{
|
|
|
|
filter->sinkpad = gst_pad_new_from_template(volume_sink_factory (),"sink");
|
2002-02-19 05:59:06 +00:00
|
|
|
gst_pad_set_connect_function(filter->sinkpad,volume_connect);
|
2001-12-22 23:27:17 +00:00
|
|
|
gst_pad_set_bufferpool_function(filter->sinkpad,volume_get_bufferpool);
|
|
|
|
filter->srcpad = gst_pad_new_from_template(volume_src_factory (),"src");
|
2002-02-19 05:59:06 +00:00
|
|
|
gst_pad_set_connect_function(filter->srcpad,volume_connect);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
gst_element_add_pad(GST_ELEMENT(filter),filter->sinkpad);
|
|
|
|
gst_element_add_pad(GST_ELEMENT(filter),filter->srcpad);
|
2002-04-28 16:07:41 +00:00
|
|
|
gst_pad_set_chain_function(filter->sinkpad,volume_chain_int16);
|
|
|
|
filter->mute = FALSE;
|
2001-12-22 23:27:17 +00:00
|
|
|
filter->volume_i = 8192;
|
|
|
|
filter->volume_f = 1.0;
|
2002-05-27 04:29:30 +00:00
|
|
|
filter->real_vol_i = 8192;
|
|
|
|
filter->real_vol_f = 1.0;
|
2002-04-28 16:07:41 +00:00
|
|
|
|
|
|
|
filter->dpman = gst_dpman_new ("volume_dpman", GST_ELEMENT(filter));
|
|
|
|
gst_dpman_add_required_dparam_callback (
|
|
|
|
filter->dpman,
|
|
|
|
g_param_spec_int("mute","Mute","Mute the audio",
|
|
|
|
0, 1, 0, G_PARAM_READWRITE),
|
|
|
|
"int",
|
|
|
|
volume_update_mute,
|
|
|
|
filter
|
|
|
|
);
|
|
|
|
gst_dpman_add_required_dparam_callback (
|
|
|
|
filter->dpman,
|
|
|
|
g_param_spec_float("volume","Volume","Volume of the audio",
|
2002-05-05 15:42:48 +00:00
|
|
|
0.0, 4.0, 1.0, G_PARAM_READWRITE),
|
2002-04-28 16:07:41 +00:00
|
|
|
"scalar",
|
|
|
|
volume_update_volume,
|
|
|
|
filter
|
|
|
|
);
|
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-04-28 16:07:41 +00:00
|
|
|
volume_chain_float (GstPad *pad, GstBuffer *buf)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
|
|
|
GstVolume *filter;
|
2002-04-28 16:07:41 +00:00
|
|
|
GstBuffer *out_buf;
|
|
|
|
gfloat *data;
|
2002-05-29 18:56:23 +00:00
|
|
|
gint i, num_samples;
|
2002-04-28 16:07:41 +00:00
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
g_return_if_fail(GST_IS_PAD(pad));
|
|
|
|
g_return_if_fail(buf != NULL);
|
|
|
|
|
|
|
|
filter = GST_VOLUME(GST_OBJECT_PARENT (pad));
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(filter));
|
2002-04-28 16:07:41 +00:00
|
|
|
|
2002-07-25 18:59:41 +00:00
|
|
|
out_buf = gst_buffer_copy_on_write (buf);
|
2002-04-28 16:07:41 +00:00
|
|
|
|
|
|
|
data = (gfloat *)GST_BUFFER_DATA(out_buf);
|
|
|
|
num_samples = GST_BUFFER_SIZE(out_buf)/sizeof(gfloat);
|
2002-05-29 18:56:23 +00:00
|
|
|
GST_DPMAN_PREPROCESS(filter->dpman, num_samples, GST_BUFFER_TIMESTAMP(out_buf));
|
2002-04-28 16:07:41 +00:00
|
|
|
i = 0;
|
|
|
|
|
2002-05-29 18:56:23 +00:00
|
|
|
while(GST_DPMAN_PROCESS(filter->dpman, i)) {
|
2002-04-28 16:07:41 +00:00
|
|
|
data[i++] *= filter->real_vol_f;
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
gst_pad_push(filter->srcpad,out_buf);
|
2002-04-02 16:43:08 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
static void
|
|
|
|
volume_chain_int16 (GstPad *pad, GstBuffer *buf)
|
|
|
|
{
|
|
|
|
GstVolume *filter;
|
|
|
|
GstBuffer *out_buf;
|
|
|
|
gint16 *data;
|
2002-05-29 18:56:23 +00:00
|
|
|
gint i, num_samples;
|
2002-04-28 16:07:41 +00:00
|
|
|
|
|
|
|
g_return_if_fail(GST_IS_PAD(pad));
|
|
|
|
g_return_if_fail(buf != NULL);
|
|
|
|
|
|
|
|
filter = GST_VOLUME(GST_OBJECT_PARENT (pad));
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(filter));
|
|
|
|
|
2002-07-25 21:46:17 +00:00
|
|
|
out_buf = gst_buffer_copy_on_write (buf);
|
2002-04-28 16:07:41 +00:00
|
|
|
|
2002-09-12 16:13:08 +00:00
|
|
|
data = (gint16 *) GST_BUFFER_DATA (out_buf);
|
|
|
|
g_assert (data);
|
2002-04-28 16:07:41 +00:00
|
|
|
num_samples = GST_BUFFER_SIZE(out_buf)/sizeof(gint16);
|
2002-05-29 18:56:23 +00:00
|
|
|
GST_DPMAN_PREPROCESS(filter->dpman, num_samples, GST_BUFFER_TIMESTAMP(out_buf));
|
2002-04-28 16:07:41 +00:00
|
|
|
i = 0;
|
2002-05-29 18:56:23 +00:00
|
|
|
|
|
|
|
while(GST_DPMAN_PROCESS(filter->dpman, i)) {
|
|
|
|
/* only clamp if the gain is greater than 1.0 */
|
|
|
|
if (filter->real_vol_i > 8192){
|
|
|
|
while (i < GST_DPMAN_NEXT_UPDATE_FRAME(filter->dpman)){
|
|
|
|
data[i] = (gint16)CLAMP(filter->real_vol_i * (gint)data[i] / 8192, -32768, 32767);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
while (i < GST_DPMAN_NEXT_UPDATE_FRAME(filter->dpman)){
|
|
|
|
data[i] = (gint16)(filter->real_vol_i * (gint)data[i] / 8192);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2002-05-29 18:56:23 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
gst_pad_push(filter->srcpad,out_buf);
|
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
static void
|
|
|
|
volume_update_mute(const GValue *value, gpointer data)
|
|
|
|
{
|
|
|
|
GstVolume *filter = (GstVolume*)data;
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(filter));
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
if (G_VALUE_HOLDS_BOOLEAN(value)){
|
|
|
|
filter->mute = g_value_get_boolean(value);
|
|
|
|
}
|
|
|
|
else if (G_VALUE_HOLDS_INT(value)){
|
|
|
|
filter->mute = (g_value_get_int(value) == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filter->mute){
|
|
|
|
filter->real_vol_f = 0.0;
|
|
|
|
filter->real_vol_i = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
filter->real_vol_f = filter->volume_f;
|
|
|
|
filter->real_vol_i = filter->volume_i;
|
|
|
|
}
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2002-04-28 16:07:41 +00:00
|
|
|
static void
|
|
|
|
volume_update_volume(const GValue *value, gpointer data)
|
|
|
|
{
|
|
|
|
GstVolume *filter = (GstVolume*)data;
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(filter));
|
|
|
|
|
|
|
|
filter->volume_f = g_value_get_float (value);
|
|
|
|
filter->volume_i = filter->volume_f*8192;
|
|
|
|
if (filter->mute){
|
|
|
|
filter->real_vol_f = 0.0;
|
|
|
|
filter->real_vol_i = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
filter->real_vol_f = filter->volume_f;
|
|
|
|
filter->real_vol_i = filter->volume_i;
|
|
|
|
}
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
volume_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstVolume *filter;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(object));
|
|
|
|
filter = GST_VOLUME(object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2002-04-28 16:07:41 +00:00
|
|
|
case ARG_MUTE:
|
|
|
|
gst_dpman_bypass_dparam(filter->dpman, "mute");
|
|
|
|
volume_update_mute(value, filter);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
case ARG_VOLUME:
|
2002-04-28 16:07:41 +00:00
|
|
|
gst_dpman_bypass_dparam(filter->dpman, "volume");
|
|
|
|
volume_update_volume(value, filter);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
2002-04-02 16:43:08 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
volume_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstVolume *filter;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail(GST_IS_VOLUME(object));
|
|
|
|
filter = GST_VOLUME(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2002-04-28 16:07:41 +00:00
|
|
|
case ARG_MUTE:
|
|
|
|
g_value_set_boolean (value, filter->mute);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
case ARG_VOLUME:
|
|
|
|
g_value_set_float (value, filter->volume_f);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
2002-04-11 20:42:27 +00:00
|
|
|
factory = gst_element_factory_new("volume",GST_TYPE_VOLUME,
|
2001-12-22 23:27:17 +00:00
|
|
|
&volume_details);
|
|
|
|
g_return_val_if_fail(factory != NULL, FALSE);
|
|
|
|
|
2002-04-11 20:42:27 +00:00
|
|
|
gst_element_factory_add_pad_template (factory, volume_src_factory ());
|
|
|
|
gst_element_factory_add_pad_template (factory, volume_sink_factory ());
|
2001-12-22 23:27:17 +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-22 23:27:17 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"volume",
|
|
|
|
plugin_init
|
|
|
|
};
|