From ef0bd3ef083dcfddea7438579dca98240ddf375c Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Fri, 22 Jun 2012 13:55:37 +0200 Subject: [PATCH] Remove unneeded debug info. --- gst-sdk/tutorials/playback-tutorial-5.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst-sdk/tutorials/playback-tutorial-5.c b/gst-sdk/tutorials/playback-tutorial-5.c index 1fc58d4..0e2682a 100644 --- a/gst-sdk/tutorials/playback-tutorial-5.c +++ b/gst-sdk/tutorials/playback-tutorial-5.c @@ -56,7 +56,6 @@ static void toggle_deinterlace (GstElement *pipeline) { /* Find current position, since it will be lost when we stop */ gst_element_query_position (pipeline, &format, ¤t_position); /* Stop */ - GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN (pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "before.dot"); gst_element_set_state (pipeline, GST_STATE_READY); /* Toggle deinterlacing flag (it will be ignored while PLAYING) */ g_object_get (pipeline, "flags", &flags, NULL); @@ -66,7 +65,6 @@ static void toggle_deinterlace (GstElement *pipeline) { gst_element_set_state (pipeline, GST_STATE_PLAYING); /* Wait until the state change takes effect */ gst_element_get_state (pipeline, NULL, NULL, GST_CLOCK_TIME_NONE); - GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN (pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "after.dot"); /* Set current position, if we were able to recover it previously */ if (GST_CLOCK_TIME_IS_VALID (current_position)) { gst_element_seek_simple (pipeline, format, GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_ACCURATE, current_position); -- 2.7.4