summaryrefslogtreecommitdiffstats
path: root/gst/mixmatrix/mixmatrix.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/mixmatrix/mixmatrix.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/mixmatrix/mixmatrix.c')
-rw-r--r--gst/mixmatrix/mixmatrix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c
index bd16c3c5..822d1429 100644
--- a/gst/mixmatrix/mixmatrix.c
+++ b/gst/mixmatrix/mixmatrix.c
@@ -49,7 +49,7 @@ struct _GstMixMatrixClass {
/* elementfactory information */
static GstElementDetails mixmatrix_details = {
"Mixing Matrix",
- "Filter/Audio/Mixing",
+ "Filter/Audio",
"LGPL",
"Mix N audio channels together into M channels",
VERSION,
@@ -79,7 +79,7 @@ GST_PAD_TEMPLATE_FACTORY (mixmatrix_sink_factory,
gst_caps_new (
"float_src",
"audio/x-raw-float",
- GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS
+ GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
)
);
@@ -90,7 +90,7 @@ GST_PAD_TEMPLATE_FACTORY (mixmatrix_src_factory,
gst_caps_new (
"float_sink",
"audio/x-raw-float",
- GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS
+ GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS
)
);