From 0d639bfc25dee3c5b9adcb2a6acb0607c5086b26 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 29 Dec 2001 17:25:17 +0000 Subject: [PATCH] Removed the Xid stuff now that xvideosink supports toplevel windows. Original commit message from CVS: Removed the Xid stuff now that xvideosink supports toplevel windows. --- tools/gstreamer-launch.c | 84 ------------------------------------------------ 1 file changed, 84 deletions(-) diff --git a/tools/gstreamer-launch.c b/tools/gstreamer-launch.c index a654494..415d830 100644 --- a/tools/gstreamer-launch.c +++ b/tools/gstreamer-launch.c @@ -14,57 +14,6 @@ static guint64 sum = 0; static guint64 min = G_MAXINT; static guint64 max = 0; -#ifndef USE_GLIB2 -GtkWidget *window; -GtkWidget *gtk_socket; -#endif - -typedef void (*found_handler) (GstElement *element, gint xid, void *priv); - -void -arg_search (GstBin *bin, gchar *argname, found_handler handler, void *priv) -{ - GList *children; - gchar *ccargname; - - ccargname = g_strdup_printf("::%s",argname); - - children = gst_bin_get_list(bin); - -#ifndef USE_GLIB2 - while (children) { - GstElement *child; - - child = GST_ELEMENT (children->data); - children = g_list_next (children); - - if (GST_IS_BIN (child)) arg_search (GST_BIN (child), argname, handler, priv); - else { - GtkType type; - - type = GTK_OBJECT_TYPE (child); - - while (type != GTK_TYPE_INVALID) { - GtkArg *args; - guint32 *flags; - guint num_args,i; - - args = gtk_object_query_args(type,&flags,&num_args); - - for (i=0;i