summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2012-08-28 11:09:59 +0200
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2012-08-28 11:09:59 +0200
commit221787d9757d9ab5ea35e6a9868eb38440e5505f (patch)
treece2d76d2bac46a1818cc798acfec6840678397b3
parent0a1b81723c6d2f782a0eacda7bf6ca4f68be32ad (diff)
Remove the code to dump the call pipeline
-rw-r--r--src/echo-call.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/echo-call.c b/src/echo-call.c
index 3ccf9c3..a5993ed 100644
--- a/src/echo-call.c
+++ b/src/echo-call.c
@@ -457,18 +457,6 @@ conference_removed_cb (TfChannel *channel,
gst_bin_remove (GST_BIN (context->pipeline), conference);
}
-static gboolean
-dump_pipeline_cb (gpointer data)
-{
- ChannelContext *context = data;
-
- GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (context->pipeline),
- GST_DEBUG_GRAPH_SHOW_ALL,
- "call-handler");
-
- return TRUE;
-}
-
static void
new_tf_channel_cb (GObject *source,
GAsyncResult *result,
@@ -487,9 +475,6 @@ new_tf_channel_cb (GObject *source,
g_clear_error (&error);
}
- g_debug ("Adding timeout");
- g_timeout_add_seconds (5, dump_pipeline_cb, context);
-
g_signal_connect (context->channel, "fs-conference-added",
G_CALLBACK (conference_added_cb), context);