From 6c751c7cd4e597b4f6cf8c8bee324beaaf1e3ad7 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Sun, 1 Dec 2002 01:42:48 +0000 Subject: [PATCH] remove debug Original commit message from CVS: remove debug --- gst/autoplug/gstspider.c | 1 - gst/autoplug/gstspideridentity.c | 3 --- 2 files changed, 4 deletions(-) diff --git a/gst/autoplug/gstspider.c b/gst/autoplug/gstspider.c index 549ba4a..135f0e8 100644 --- a/gst/autoplug/gstspider.c +++ b/gst/autoplug/gstspider.c @@ -313,7 +313,6 @@ gst_spider_connection_new (GstSpiderIdentity *src) conn->src = src; conn->path = NULL; conn->current = (GstElement *) spider->sink_ident; - g_print("creating new connection\n"); spider->connections = g_list_prepend (spider->connections, conn); return conn; diff --git a/gst/autoplug/gstspideridentity.c b/gst/autoplug/gstspideridentity.c index 3308928..3cfb46b 100644 --- a/gst/autoplug/gstspideridentity.c +++ b/gst/autoplug/gstspideridentity.c @@ -174,12 +174,10 @@ gst_spider_identity_chain (GstPad *pad, GstBuffer *buf) { GstSpider *spider = (GstSpider *) GST_OBJECT_PARENT (ident); GList *list = spider->connections; - g_print("have EOS in chain\n"); while (list) { GstSpiderConnection *conn = (GstSpiderConnection *) list->data; list = g_list_next (list); - g_print("forwarding EOS to conn\n"); gst_element_set_eos (GST_ELEMENT (conn->src)); gst_pad_push (conn->src->src, GST_BUFFER (gst_event_new (GST_EVENT_EOS))); } @@ -442,7 +440,6 @@ gst_spider_identity_sink_loop_type_finding (GstSpiderIdentity *ident) switch (GST_EVENT_TYPE (GST_EVENT (buf))){ case GST_EVENT_EOS: getmorebuf = FALSE; - g_print("have EOS\n"); /* FIXME Notify the srcs that EOS has happened */ gst_pad_event_default (ident->sink, GST_EVENT (buf)); break; -- 2.7.4