summaryrefslogtreecommitdiff
path: root/ext/soundtouch
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2011-11-04 18:52:35 +0100
committerStefan Sauer <ensonic@users.sf.net>2011-11-04 20:14:01 +0100
commit9f738908929388464c950b1e45d427eae69268d6 (patch)
tree0a4b895c3e2ebd5df9333cea82dd929c96d626f9 /ext/soundtouch
parent8ec6da779780166d819e3791d5831b9c0fad4c8e (diff)
downloadgstreamer-plugins-bad-9f738908929388464c950b1e45d427eae69268d6.tar.gz
controller: port to new controller location and api
Diffstat (limited to 'ext/soundtouch')
-rw-r--r--ext/soundtouch/Makefile.am2
-rw-r--r--ext/soundtouch/plugin.c3
2 files changed, 1 insertions, 4 deletions
diff --git a/ext/soundtouch/Makefile.am b/ext/soundtouch/Makefile.am
index 74a5516d4..07832a7bc 100644
--- a/ext/soundtouch/Makefile.am
+++ b/ext/soundtouch/Makefile.am
@@ -7,7 +7,7 @@ libgstsoundtouch_la_SOURCES = \
libgstsoundtouch_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SOUNDTOUCH_CFLAGS)
libgstsoundtouch_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(SOUNDTOUCH_CFLAGS)
-libgstsoundtouch_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(GST_CONTROLLER_LIBS) $(GST_LIBS) $(SOUNDTOUCH_LIBS) $(LIBM)
+libgstsoundtouch_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(GST_LIBS) $(SOUNDTOUCH_LIBS) $(LIBM)
libgstsoundtouch_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstsoundtouch_la_LIBTOOLFLAGS = --tag=disable-static
diff --git a/ext/soundtouch/plugin.c b/ext/soundtouch/plugin.c
index 5e8cb1563..77cc30492 100644
--- a/ext/soundtouch/plugin.c
+++ b/ext/soundtouch/plugin.c
@@ -22,15 +22,12 @@
#endif
#include <gst/gst.h>
-#include <gst/controller/gstcontroller.h>
#include "gstpitch.hh"
#include "gstbpmdetect.hh"
static gboolean
plugin_init (GstPlugin * plugin)
{
- gst_controller_init (NULL, NULL);
-
return gst_element_register (plugin, "pitch", GST_RANK_NONE, GST_TYPE_PITCH)
&& gst_element_register (plugin, "bpmdetect", GST_RANK_NONE,
GST_TYPE_BPM_DETECT);