summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2012-01-20 11:40:00 +0100
committerStefan Sauer <ensonic@users.sf.net>2012-01-20 14:47:32 +0100
commit839ce7e59f036ec594df896380d19ef12f2e0a57 (patch)
treecaac18a798fcd26c0b72c94104070ddfbaa23e18
parent27ee60a27b771aa0bd34d06267e95e41927a61d6 (diff)
controller: adapt to controller api changes
Don't use the convenience api for control sources.
-rw-r--r--tests/icles/pitch-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/icles/pitch-test.c b/tests/icles/pitch-test.c
index b5944b42d..96a56b481 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) {