summaryrefslogtreecommitdiffstats
path: root/gst/filter/gstfilter.c
diff options
context:
space:
mode:
authorLeif Johnson <leif@ambient.2y.net>2003-07-19 23:47:42 +0000
committerLeif Johnson <leif@ambient.2y.net>2003-07-19 23:47:42 +0000
commit6d6150c0529d8f5af1857543c5d94902eab7237c (patch)
tree11813ead7a82bbf5dc1ab36ce6c4d3ea1303bd74 /gst/filter/gstfilter.c
parentf6830d4ad15f488c6a61ebccf4f09529fdf5ebd3 (diff)
downloadgst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.tar.gz
gst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.tar.bz2
gst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.zip
+ the last of the float caps changes ... these are a bit more pervasive
Original commit message from CVS: + the last of the float caps changes ... these are a bit more pervasive
Diffstat (limited to 'gst/filter/gstfilter.c')
-rw-r--r--gst/filter/gstfilter.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gst/filter/gstfilter.c b/gst/filter/gstfilter.c
index f031bb6e..c5e6ccba 100644
--- a/gst/filter/gstfilter.c
+++ b/gst/filter/gstfilter.c
@@ -38,38 +38,38 @@ static struct _elements_entry _elements[] = {
{ NULL, 0 },
};
-GstPadTemplate*
+GstPadTemplate*
gst_filter_src_factory (void)
{
static GstPadTemplate *templ = NULL;
if (!templ) {
- templ = GST_PAD_TEMPLATE_NEW (
+ templ = GST_PAD_TEMPLATE_NEW (
"src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
gst_caps_new (
"filter_src",
"audio/x-raw-float",
- GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS
+ GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
)
);
}
return templ;
}
-GstPadTemplate*
+GstPadTemplate*
gst_filter_sink_factory (void)
{
static GstPadTemplate *templ = NULL;
if (!templ) {
- templ = GST_PAD_TEMPLATE_NEW (
+ templ = GST_PAD_TEMPLATE_NEW (
"sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
gst_caps_new (
"filter_src",
"audio/x-raw-float",
- GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS
+ GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
)
);
}