summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/signalprocessor/gstsignalprocessor.c
diff options
context:
space:
mode:
authorDave Robillard <dave@drobilla.net>2009-06-25 15:10:24 -0400
committerDave Robillard <dave@drobilla.net>2009-06-25 15:10:24 -0400
commit3a0774765760f816c3e748b45f705dc8c26fe92a (patch)
tree3b9bef8e19097c9366055837d6910cddd9073d40 /gst-libs/gst/signalprocessor/gstsignalprocessor.c
parentec9003e8bebf465e3ed456f133b24bf8ebaa6e9e (diff)
downloadgst-plugins-bad-3a0774765760f816c3e748b45f705dc8c26fe92a.tar.gz
gst-plugins-bad-3a0774765760f816c3e748b45f705dc8c26fe92a.tar.bz2
gst-plugins-bad-3a0774765760f816c3e748b45f705dc8c26fe92a.zip
Eliminate use of static mono pad template.
Diffstat (limited to 'gst-libs/gst/signalprocessor/gstsignalprocessor.c')
-rw-r--r--gst-libs/gst/signalprocessor/gstsignalprocessor.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/gst-libs/gst/signalprocessor/gstsignalprocessor.c b/gst-libs/gst/signalprocessor/gstsignalprocessor.c
index d057ce85..c474fbc0 100644
--- a/gst-libs/gst/signalprocessor/gstsignalprocessor.c
+++ b/gst-libs/gst/signalprocessor/gstsignalprocessor.c
@@ -50,10 +50,6 @@
GST_DEBUG_CATEGORY_STATIC (gst_signal_processor_debug);
#define GST_CAT_DEFAULT gst_signal_processor_debug
-/* FIXME: this is mono only */
-static GstStaticCaps template_caps =
-GST_STATIC_CAPS (GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_CAPS);
-
#define GST_TYPE_SIGNAL_PROCESSOR_PAD_TEMPLATE \
(gst_signal_processor_pad_template_get_type ())
#define GST_SIGNAL_PROCESSOR_PAD_TEMPLATE(obj) \
@@ -100,14 +96,15 @@ gst_signal_processor_class_add_pad_template (GstSignalProcessorClass * klass,
{
GstPadTemplate *new;
GstCaps *caps;
+ guint channels = 1;
g_return_if_fail (GST_IS_SIGNAL_PROCESSOR_CLASS (klass));
g_return_if_fail (name != NULL);
g_return_if_fail (direction == GST_PAD_SRC || direction == GST_PAD_SINK);
- /* FIXME: would be nice to have the template as a parameter, right now this can
- * only create mono pads */
- caps = gst_caps_copy (gst_static_caps_get (&template_caps));
+ caps = gst_caps_new_simple ("audio/x-raw-float",
+ "endianness", G_TYPE_INT, G_BYTE_ORDER,
+ "width", G_TYPE_INT, 32, "channels", G_TYPE_INT, channels, NULL);
new = g_object_new (gst_signal_processor_pad_template_get_type (),
"name", name, "name-template", name,