summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2012-01-31 12:22:19 +0100
committerStefan Sauer <ensonic@users.sf.net>2012-01-31 12:22:19 +0100
commite83c53790f34706ee8d48bd87d6089b40fc869f1 (patch)
tree10b2de560b8d7a9625eb097aae32cf80c08f3f56
parent80494c63180460ad59f5007842b577fbd9baa66b (diff)
controller: adapt to control-source type changes
-rw-r--r--tests/examples/shapewipe/shapewipe-example.c21
-rw-r--r--tests/examples/v4l2/camctrl.c5
2 files changed, 9 insertions, 17 deletions
diff --git a/tests/examples/shapewipe/shapewipe-example.c b/tests/examples/shapewipe/shapewipe-example.c
index 2a4dbbbae..4678eefa3 100644
--- a/tests/examples/shapewipe/shapewipe-example.c
+++ b/tests/examples/shapewipe/shapewipe-example.c
@@ -64,8 +64,7 @@ main (gint argc, gchar ** argv)
{
GstElement *pipeline;
GstElement *shapewipe;
- GstLFOControlSource *csource;
- GValue val = { 0, };
+ GstControlSource *cs;
GMainLoop *loop;
GstBus *bus;
gchar *pipeline_string;
@@ -97,23 +96,17 @@ main (gint argc, gchar ** argv)
shapewipe = gst_bin_get_by_name (GST_BIN (pipeline), "shape");
- csource = gst_lfo_control_source_new ();
+ cs = gst_lfo_control_source_new ();
gst_object_add_control_binding (GST_OBJECT_CAST (shapewipe),
gst_direct_control_binding_new (GST_OBJECT_CAST (shapewipe), "position",
- GST_CONTROL_SOURCE (csource)));
+ cs));
- g_value_init (&val, G_TYPE_FLOAT);
- g_value_set_float (&val, 0.5);
- g_object_set (G_OBJECT (csource), "amplitude", &val, NULL);
- g_value_set_float (&val, 0.5);
- g_object_set (G_OBJECT (csource), "offset", &val, NULL);
- g_value_unset (&val);
+ g_object_set (cs,
+ "amplitude", 0.5,
+ "offset", 0.5, "frequency", 0.25, "timeshift", 500 * GST_MSECOND, NULL);
- g_object_set (G_OBJECT (csource), "frequency", 0.25, NULL);
- g_object_set (G_OBJECT (csource), "timeshift", 500 * GST_MSECOND, NULL);
-
- g_object_unref (csource);
+ g_object_unref (cs);
loop = g_main_loop_new (NULL, FALSE);
diff --git a/tests/examples/v4l2/camctrl.c b/tests/examples/v4l2/camctrl.c
index 83edaa93f..994fdce58 100644
--- a/tests/examples/v4l2/camctrl.c
+++ b/tests/examples/v4l2/camctrl.c
@@ -72,7 +72,7 @@ static void
set_program (GstObject * elem, GstStructure * prog)
{
const GstStructure *s;
- GstInterpolationControlSource *cs;
+ GstControlSource *cs;
GstClockTime ts, dur;
gdouble v;
const GValue *frame;
@@ -98,8 +98,7 @@ set_program (GstObject * elem, GstStructure * prog)
if (!cs) {
cs = gst_interpolation_control_source_new ();
gst_object_add_control_binding (elem,
- gst_direct_control_binding_new (elem, name,
- GST_CONTROL_SOURCE (cs)));
+ gst_direct_control_binding_new (elem, name, cs));
g_object_set (cs, "mode", GST_INTERPOLATION_MODE_NONE, NULL);
g_hash_table_insert (css, (gpointer) name, cs);
gst_object_unref (cs);