summaryrefslogtreecommitdiff
path: root/ext/lv2
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/lv2
parent8ec6da779780166d819e3791d5831b9c0fad4c8e (diff)
downloadgstreamer-plugins-bad-9f738908929388464c950b1e45d427eae69268d6.tar.gz
controller: port to new controller location and api
Diffstat (limited to 'ext/lv2')
-rw-r--r--ext/lv2/Makefile.am4
-rw-r--r--ext/lv2/gstlv2.c4
2 files changed, 2 insertions, 6 deletions
diff --git a/ext/lv2/Makefile.am b/ext/lv2/Makefile.am
index 7b6ac4e52..76333e79e 100644
--- a/ext/lv2/Makefile.am
+++ b/ext/lv2/Makefile.am
@@ -4,11 +4,11 @@ libgstlv2_la_SOURCES = gstlv2.c
libgstlv2_la_CFLAGS = \
-I$(top_srcdir)/gst-libs \
$(GST_PLUGINS_BASE_CFLAGS) \
- $(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS) $(SLV2_CFLAGS)
+ $(GST_CFLAGS) $(SLV2_CFLAGS)
libgstlv2_la_LIBADD = \
$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor-@GST_MAJORMINOR@.la \
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) \
- $(GST_CONTROLLER_LIBS) $(LIBM) $(SLV2_LIBS)
+ $(LIBM) $(SLV2_LIBS)
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstlv2_la_LIBTOOLFLAGS = --tag=disable-static
diff --git a/ext/lv2/gstlv2.c b/ext/lv2/gstlv2.c
index f31050fc6..6a4fcb1a2 100644
--- a/ext/lv2/gstlv2.c
+++ b/ext/lv2/gstlv2.c
@@ -39,7 +39,6 @@
#include <math.h>
#include <glib.h>
#include <gst/audio/audio.h>
-#include <gst/controller/gstcontroller.h>
#include <gst/audio/multichannel.h>
#include "gstlv2.h"
@@ -894,9 +893,6 @@ plugin_init (GstPlugin * plugin)
side_left_role = slv2_value_new_uri (world, NS_PG "sideLeftChannel");
side_right_role = slv2_value_new_uri (world, NS_PG "sideRightChannel");
- /* initialize gst controller library */
- gst_controller_init (NULL, NULL);
-
gst_plugin_add_dependency_simple (plugin,
"LV2_PATH", GST_LV2_DEFAULT_PATH, NULL, GST_PLUGIN_DEPENDENCY_FLAG_NONE);