From: Sebastian Dröge Date: Thu, 23 Feb 2012 12:39:33 +0000 (+0100) Subject: seek: The volume property signals are proxied in playbin2 since some time already X-Git-Tag: RELEASE-0.11.3~1^2~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db66b501fe5df208bdb559a80701ed3a8efb4113;p=platform%2Fupstream%2Fgst-plugins-base.git seek: The volume property signals are proxied in playbin2 since some time already --- diff --git a/tests/examples/seek/seek.c b/tests/examples/seek/seek.c index 6fc97a9..699ba36 100644 --- a/tests/examples/seek/seek.c +++ b/tests/examples/seek/seek.c @@ -999,10 +999,6 @@ make_playerbin2_pipeline (const gchar * location) { GstElement *pipeline = construct_playerbin ("playbin2", location); - /* FIXME: this is not triggered, playbin2 is not forwarding it from the sink */ - g_signal_connect (pipeline, "notify::volume", G_CALLBACK (volume_notify_cb), - NULL); - navigation_element = GST_ELEMENT (gst_object_ref (pipeline)); colorbalance_element = GST_ELEMENT (gst_object_ref (pipeline)); @@ -1302,11 +1298,6 @@ update_scale (gpointer data) set_scale (position * N_GRAD / duration); } - /* FIXME: see make_playerbin2_pipeline() and volume_notify_cb() */ - if (pipeline_type == 16) { - g_object_notify (G_OBJECT (pipeline), "volume"); - } - return TRUE; }