From c0b67627b12536efe6bac5a065f1e6b0a5d39c72 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 10 Sep 2004 13:31:06 +0000 Subject: initial commit git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@3 bb39ca4e-bce3-0310-b5d4-eea78a553289 --- src/plugin.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/plugin.c (limited to 'src/plugin.c') diff --git a/src/plugin.c b/src/plugin.c new file mode 100644 index 0000000..900fd17 --- /dev/null +++ b/src/plugin.c @@ -0,0 +1,25 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "polypsink.h" + +GST_DEBUG_CATEGORY(polyp_debug); + +static gboolean plugin_init (GstPlugin * plugin) { + if (!gst_library_load("gstaudio")) + return FALSE; + + if (!(gst_polypsink_factory_init (plugin))) + return FALSE; + + GST_DEBUG_CATEGORY_INIT(polyp_debug, "polyp", 0, "Polypaudio elements"); + return TRUE; +} + +GST_PLUGIN_DEFINE(GST_VERSION_MAJOR, GST_VERSION_MINOR, + "polypsink", "Polypaudio Element Plugins", + plugin_init, + VERSION, + "LGPL", + "polypaudio", "http://0pointer.de/lennart/projects/gst-polyp/") -- cgit