gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
authorAndy Wingo <wingo@pobox.com>
Tue, 27 Sep 2005 09:22:30 +0000 (09:22 +0000)
committerAndy Wingo <wingo@pobox.com>
Tue, 27 Sep 2005 09:22:30 +0000 (09:22 +0000)
Original commit message from CVS:
2005-09-27  Andy Wingo  <wingo@pobox.com>

* gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.

ChangeLog
gst/sine/gstsinesrc.c

index 6f3ab58..23567d3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-27  Andy Wingo  <wingo@pobox.com>
+
+       * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
+
 2005-09-26  Andy Wingo  <wingo@pobox.com>
 
        * gst/sine/gstsinesrc.h:
index b2fc4a8..7969c60 100644 (file)
@@ -235,12 +235,15 @@ static GstClockReturn
 gst_sinesrc_wait (GstSineSrc * src, GstClockTime time)
 {
   GstClockReturn ret;
+  GstClockTime base_time;
 
   GST_LOCK (src);
   /* clock_id should be NULL outside of this function */
   g_assert (src->clock_id == NULL);
   g_assert (GST_CLOCK_TIME_IS_VALID (time));
-  src->clock_id = gst_clock_new_single_shot_id (GST_ELEMENT_CLOCK (src), time);
+  base_time = GST_ELEMENT (src)->base_time;
+  src->clock_id = gst_clock_new_single_shot_id (GST_ELEMENT_CLOCK (src),
+      time + base_time);
   GST_UNLOCK (src);
 
   ret = gst_clock_id_wait (src->clock_id, NULL);