summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-05-10 23:59:56 +0000
committerLennart Poettering <lennart@poettering.net>2006-05-10 23:59:56 +0000
commit30402d8fc7fe2d07f3cce0f6b2b0e6fcc0f2bc0e (patch)
tree060e32fa793d09f52054381832cf1280a4fc7dfa /src/plugin.c
parent218ba9bee9f7a1cee34e1963f6d0b2d75499e58e (diff)
implement mixer object
git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@19 bb39ca4e-bce3-0310-b5d4-eea78a553289
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c8
1 files changed, 6 insertions, 2 deletions
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",