From 0548c564476082e4eb94ea96a629bf8427420b5e Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Fri, 12 Nov 2004 15:04:55 +0000 Subject: Added the polypaudio sink and hooked it into the build system. Original commit message from CVS: Added the polypaudio sink and hooked it into the build system. --- ext/polyp/plugin.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ext/polyp/plugin.c (limited to 'ext/polyp/plugin.c') diff --git a/ext/polyp/plugin.c b/ext/polyp/plugin.c new file mode 100644 index 00000000..aea78e24 --- /dev/null +++ b/ext/polyp/plugin.c @@ -0,0 +1,26 @@ +#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 v1.2.1