From 30402d8fc7fe2d07f3cce0f6b2b0e6fcc0f2bc0e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 10 May 2006 23:59:56 +0000 Subject: implement mixer object git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@19 bb39ca4e-bce3-0310-b5d4-eea78a553289 --- src/plugin.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/plugin.c') diff --git a/src/plugin.c b/src/plugin.c index f034222..bae4773 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -25,6 +25,7 @@ #include "polypsink.h" #include "polypsrc.h" +#include "polypmixer.h" GST_DEBUG_CATEGORY(polyp_debug); @@ -35,6 +36,9 @@ static gboolean plugin_init(GstPlugin* plugin) { if (!gst_element_register(plugin, "polypsrc", GST_RANK_NONE, GST_TYPE_POLYPSRC)) return FALSE; + + if (!gst_element_register(plugin, "polypmixer", GST_RANK_NONE, GST_TYPE_POLYPMIXER)) + return FALSE; GST_DEBUG_CATEGORY_INIT(polyp_debug, "polyp", 0, "Polypaudio elements"); return TRUE; @@ -43,8 +47,8 @@ static gboolean plugin_init(GstPlugin* plugin) { GST_PLUGIN_DEFINE( GST_VERSION_MAJOR, GST_VERSION_MINOR, - "polypsink", - "Polypaudio Element Plugins", + "polypaudio", + "Polypaudio Elements Plugin", plugin_init, VERSION, "LGPL", -- cgit