mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
0548c56447
Original commit message from CVS: Added the polypaudio sink and hooked it into the build system.
26 lines
585 B
C
26 lines
585 B
C
#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/")
|