From f98d0f88958ec772aabd089ca1647e5df73f6071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 10 Jul 2009 17:15:48 +0200 Subject: [PATCH] gio: Remove workaround for playbin2 bug in the sample application The playbin2 bug was #588078. --- tests/examples/gio/giosrc-mounting.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/examples/gio/giosrc-mounting.c b/tests/examples/gio/giosrc-mounting.c index 8181096a2d..b6d4731a5b 100644 --- a/tests/examples/gio/giosrc-mounting.c +++ b/tests/examples/gio/giosrc-mounting.c @@ -34,15 +34,9 @@ mount_cb (GObject * obj, GAsyncResult * res, gpointer user_data) ret = g_file_mount_enclosing_volume_finish (G_FILE (obj), res, &err); if (ret) { - const gchar *uri; - g_print ("mounted successfully\n"); gst_bus_set_flushing ((GstBus *) user_data, FALSE); - /* FIXME: This works around bug #588078 */ - g_object_get (G_OBJECT (pipeline), "uri", &uri, NULL); - g_object_set (G_OBJECT (pipeline), "uri", uri, NULL); - gst_element_set_state (pipeline, GST_STATE_PLAYING); } else { g_print ("mounting failed: %s\n", err->message);