From 839ce7e59f036ec594df896380d19ef12f2e0a57 Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Fri, 20 Jan 2012 11:40:00 +0100 Subject: [PATCH] controller: adapt to controller api changes Don't use the convenience api for control sources. --- tests/icles/pitch-test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/icles/pitch-test.c b/tests/icles/pitch-test.c index b5944b42d8..96a56b481f 100644 --- a/tests/icles/pitch-test.c +++ b/tests/icles/pitch-test.c @@ -71,7 +71,8 @@ main (int argc, char **argv) csource = gst_interpolation_control_source_new (); g_object_set (csource, "mode", GST_INTERPOLATION_MODE_LINEAR, NULL); - gst_object_set_control_source (pitch, "pitch", GST_CONTROL_SOURCE (csource)); + gst_object_set_control_binding (pitch, + gst_control_binding_new (pitch, "pitch", GST_CONTROL_SOURCE (csource))); cs = (GstTimedValueControlSource *) csource; for (i = 0; i < 100; ++i) {