summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
diff options
context:
space:
mode:
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",