mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
controller: rename control-bindings
gst_control_binding_xxx -> gst_xxx_control_binding for consistency.
This commit is contained in:
parent
bb2bd604e0
commit
80494c6318
2 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/controller/gstlfocontrolsource.h>
|
||||
#include <gst/controller/gstcontrolbindingdirect.h>
|
||||
#include <gst/controller/gstdirectcontrolbinding.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -100,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_direct_new (GST_OBJECT_CAST (shapewipe), "position",
|
||||
gst_direct_control_binding_new (GST_OBJECT_CAST (shapewipe), "position",
|
||||
GST_CONTROL_SOURCE (csource)));
|
||||
|
||||
g_value_init (&val, G_TYPE_FLOAT);
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/controller/gstinterpolationcontrolsource.h>
|
||||
#include <gst/controller/gstcontrolbindingdirect.h>
|
||||
#include <gst/controller/gstdirectcontrolbinding.h>
|
||||
|
||||
static void
|
||||
event_loop (GstElement * bin)
|
||||
|
@ -98,7 +98,7 @@ set_program (GstObject * elem, GstStructure * prog)
|
|||
if (!cs) {
|
||||
cs = gst_interpolation_control_source_new ();
|
||||
gst_object_add_control_binding (elem,
|
||||
gst_control_binding_direct_new (elem, name,
|
||||
gst_direct_control_binding_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);
|
||||
|
|
Loading…
Reference in a new issue