From 48bd4c304699ddbbaf8657137f398e05130ee20c Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Thu, 10 Jul 2014 16:21:31 +0200 Subject: [PATCH] composition: Dot the newly created stacks Co-Authored by: Mathieu Duponchelle --- gnl/gnlcomposition.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnl/gnlcomposition.c b/gnl/gnlcomposition.c index 641a8aa790..6e01558450 100644 --- a/gnl/gnlcomposition.c +++ b/gnl/gnlcomposition.c @@ -1224,6 +1224,8 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED, GST_INFO_OBJECT (comp, "We got an EOS right after seeing the right" " segment, restarting task"); + GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (comp), + GST_DEBUG_GRAPH_SHOW_ALL, "eos-after-segment"); gst_pad_remove_probe (GNL_OBJECT_SRC (comp), priv->commited_probeid); _add_emit_commited_and_restart_task (comp); } @@ -2200,6 +2202,8 @@ _commit_done_cb (GstPad * pad, GstPadProbeInfo * info, GnlComposition * comp) GST_INFO_OBJECT (comp, "Got %" GST_PTR_FORMAT " concidering commit " "as done", info->data); + GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (comp), + GST_DEBUG_GRAPH_SHOW_ALL, "new-stack"); return _add_emit_commited_and_restart_task (comp); }