controller: move from control-binding to control-binding-direct

This commit is contained in:
Stefan Sauer 2012-01-21 20:07:56 +01:00
parent 37409d4d65
commit 20cdee6aa6
2 changed files with 5 additions and 2 deletions

View file

@ -19,6 +19,7 @@
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/controller/gstlfocontrolsource.h> #include <gst/controller/gstlfocontrolsource.h>
#include <gst/controller/gstcontrolbindingdirect.h>
#include <stdlib.h> #include <stdlib.h>
@ -99,7 +100,7 @@ main (gint argc, gchar ** argv)
csource = gst_lfo_control_source_new (); csource = gst_lfo_control_source_new ();
gst_object_add_control_binding (GST_OBJECT_CAST (shapewipe), gst_object_add_control_binding (GST_OBJECT_CAST (shapewipe),
gst_control_binding_new (GST_OBJECT_CAST (shapewipe), "position", gst_control_binding_direct_new (GST_OBJECT_CAST (shapewipe), "position",
GST_CONTROL_SOURCE (csource))); GST_CONTROL_SOURCE (csource)));
g_value_init (&val, G_TYPE_FLOAT); g_value_init (&val, G_TYPE_FLOAT);

View file

@ -32,6 +32,7 @@
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/controller/gstinterpolationcontrolsource.h> #include <gst/controller/gstinterpolationcontrolsource.h>
#include <gst/controller/gstcontrolbindingdirect.h>
static void static void
event_loop (GstElement * bin) event_loop (GstElement * bin)
@ -97,7 +98,8 @@ set_program (GstObject * elem, GstStructure * prog)
if (!cs) { if (!cs) {
cs = gst_interpolation_control_source_new (); cs = gst_interpolation_control_source_new ();
gst_object_add_control_binding (elem, gst_object_add_control_binding (elem,
gst_control_binding_new (elem, name, GST_CONTROL_SOURCE (cs))); gst_control_binding_direct_new (elem, name,
GST_CONTROL_SOURCE (cs)));
g_object_set (cs, "mode", GST_INTERPOLATION_MODE_NONE, NULL); g_object_set (cs, "mode", GST_INTERPOLATION_MODE_NONE, NULL);
g_hash_table_insert (css, (gpointer) name, cs); g_hash_table_insert (css, (gpointer) name, cs);
gst_object_unref (cs); gst_object_unref (cs);