projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
763f3d5
)
clock debug addition
author
Thomas Vander Stichele
<thomas@apestaart.org>
Sat, 17 May 2003 23:08:40 +0000
(23:08 +0000)
committer
Thomas Vander Stichele
<thomas@apestaart.org>
Sat, 17 May 2003 23:08:40 +0000
(23:08 +0000)
Original commit message from CVS:
clock debug addition
gst/gstelement.c
patch
|
blob
|
history
diff --git
a/gst/gstelement.c
b/gst/gstelement.c
index d621f45e58a5dbe9846cf44b9414ddbfe1d7620f..a092e20c1f1f9c803d53417a71bdaaeec068f550 100644
(file)
--- a/
gst/gstelement.c
+++ b/
gst/gstelement.c
@@
-757,10
+757,13
@@
gst_element_clock_wait (GstElement *element, GstClockID id, GstClockTimeDiff *ji
g_return_val_if_fail (GST_IS_ELEMENT (element), GST_CLOCK_ERROR);
if (GST_ELEMENT_SCHED (element)) {
+ GST_DEBUG (GST_CAT_CLOCK, "waiting on scheduler clock");
res = gst_scheduler_clock_wait (GST_ELEMENT_SCHED (element), element, id, jitter);
}
- else
+ else {
+ GST_DEBUG (GST_CAT_CLOCK, "no scheduler, returning GST_CLOCK_TIMEOUT");
res = GST_CLOCK_TIMEOUT;
+ }
return res;
}