mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
controller: move from control-binding to control-binding-direct
This commit is contained in:
parent
37409d4d65
commit
20cdee6aa6
2 changed files with 5 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/controller/gstlfocontrolsource.h>
|
||||
#include <gst/controller/gstcontrolbindingdirect.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -99,7 +100,7 @@ main (gint argc, gchar ** argv)
|
|||
csource = gst_lfo_control_source_new ();
|
||||
|
||||
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)));
|
||||
|
||||
g_value_init (&val, G_TYPE_FLOAT);
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/controller/gstinterpolationcontrolsource.h>
|
||||
#include <gst/controller/gstcontrolbindingdirect.h>
|
||||
|
||||
static void
|
||||
event_loop (GstElement * bin)
|
||||
|
@ -97,7 +98,8 @@ set_program (GstObject * elem, GstStructure * prog)
|
|||
if (!cs) {
|
||||
cs = gst_interpolation_control_source_new ();
|
||||
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_hash_table_insert (css, (gpointer) name, cs);
|
||||
gst_object_unref (cs);
|
||||
|
|
Loading…
Reference in a new issue