summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-06-15 18:43:52 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2009-06-15 18:43:52 +0200
commit4c990aab3a16f2b34108c265a2cfa9d3c6809795 (patch)
tree52f2574e1e09caa2e2ca242d4250594baac81283
parent309d78770c75411413fb967cac7c4b8fd02b87b8 (diff)
basesrc: add some more debug
-rw-r--r--libs/gst/base/gstbasesrc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/gst/base/gstbasesrc.c b/libs/gst/base/gstbasesrc.c
index a19be72ffb..b279e56124 100644
--- a/libs/gst/base/gstbasesrc.c
+++ b/libs/gst/base/gstbasesrc.c
@@ -1465,6 +1465,7 @@ gst_base_src_send_event (GstElement * element, GstEvent * event)
GST_OBJECT_UNLOCK (src->srcpad);
if (started) {
+ GST_DEBUG_OBJECT (src, "performing seek");
/* when we are running in push mode, we can execute the
* seek right now, we need to unlock. */
result = gst_base_src_perform_seek (src, event, TRUE);
@@ -1474,6 +1475,7 @@ gst_base_src_send_event (GstElement * element, GstEvent * event)
/* else we store the event and execute the seek when we
* get activated */
GST_OBJECT_LOCK (src);
+ GST_DEBUG_OBJECT (src, "queueing seek");
event_p = &src->data.ABI.pending_seek;
gst_event_replace ((GstEvent **) event_p, event);
GST_OBJECT_UNLOCK (src);