summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Baker <steve@stevebaker.org>2002-09-10 17:08:14 +0000
committerSteve Baker <steve@stevebaker.org>2002-09-10 17:08:14 +0000
commit9e573d3f28c7d49c4161cf0d49bde86afead8080 (patch)
tree472d291d3630cca30dfaa193850462b18d484c5e
parentebba8c33ac95d4c4d93033f6c4290aacf2be0dd7 (diff)
downloadgstreamer-plugins-bad-9e573d3f28c7d49c4161cf0d49bde86afead8080.tar.gz
remove some debugging. it works already
Original commit message from CVS: remove some debugging. it works already
-rw-r--r--gst-libs/gst/gconf/gconf.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gst-libs/gst/gconf/gconf.c b/gst-libs/gst/gconf/gconf.c
index 09693cf7a..3a5f79d5a 100644
--- a/gst-libs/gst/gconf/gconf.c
+++ b/gst-libs/gst/gconf/gconf.c
@@ -29,13 +29,11 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction)
GList *pads = NULL;
GstElement *element = NULL;
- g_print ("DEBUG: find_unconnected start\n");
elements = (GList *) gst_bin_get_list (bin);
/* traverse all elements looking for unconnected pads */
while (elements && pad == NULL)
{
element = GST_ELEMENT (elements->data);
- g_print ("DEBUG: looking in element %s\n", gst_element_get_name (element));
pads = gst_element_get_pad_list (element);
while (pads)
{
@@ -45,7 +43,6 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction)
if (GST_PAD_PEER (GST_PAD (pads->data)) == NULL)
{
/* found it ! */
- g_print ("DEBUG: found an unconnected pad !\n");
pad = GST_PAD (pads->data);
}
}
@@ -54,7 +51,6 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction)
}
elements = g_list_next (elements);
}
- g_print ("DEBUG: find_unconnected stop\n");
return pad;
}
@@ -67,7 +63,6 @@ gst_gconf_get_string (const gchar *key)
gchar *value = NULL;
gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key);
- g_print ("DEBUG: full key: %s\n", full_key);
value = gconf_client_get_string (gst_gconf_get_client (), full_key, &error);
g_free (full_key);