Add underscore.
authorMichael Smith <msmith@xiph.org>
Tue, 22 Nov 2005 16:31:41 +0000 (16:31 +0000)
committerMichael Smith <msmith@xiph.org>
Tue, 22 Nov 2005 16:31:41 +0000 (16:31 +0000)
Original commit message from CVS:
Add underscore.

ChangeLog
gst/videorate/gstvideorate.c
gst/videotestsrc/gstvideotestsrc.c

index 930efe0b21907c1a9cfc6df1af6ecb873eb5fe77..efb3c9a630949541cdd2bd91e11ca415dee320be 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-22  Michael Smith <msmith@fluendo.com>
+
+       * gst/videorate/gstvideorate.c: (gst_videorate_chain):
+       * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
+         Add underscore.
+
 2005-11-22  Michael Smith <msmith@fluendo.com>
 
        * gst/videorate/gstvideorate.c: (gst_videorate_chain):
index 037e4764371dbd0f0d9e2e2fa9241f7b2c1b08d6..f7850739e737e93a9bd57fd6916b93e876bfd2b8 100644 (file)
@@ -510,7 +510,7 @@ gst_videorate_chain (GstPad * pad, GstBuffer * buffer)
         if (videorate->to_rate_numerator) {
           videorate->next_ts =
               videorate->first_ts +
-              gst_util_clocktime_scale (videorate->out * GST_SECOND,
+              gst_util_clock_time_scale (videorate->out * GST_SECOND,
               videorate->to_rate_denominator, videorate->to_rate_numerator);
           GST_BUFFER_DURATION (outbuf) =
               videorate->next_ts - GST_BUFFER_TIMESTAMP (outbuf);
index 1cab0a48adc1e36178e8cb6eab916af04d28523a..1b494933e143024e4dd04e7069db08c2acdef4db 100644 (file)
@@ -459,13 +459,13 @@ gst_videotestsrc_create (GstPushSrc * psrc, GstBuffer ** buffer)
 
   GST_BUFFER_TIMESTAMP (outbuf) = src->timestamp_offset + src->running_time;
   if (src->rate_numerator != 0) {
-    GST_BUFFER_DURATION (outbuf) = gst_utils_clocktime_scale (GST_SECOND,
+    GST_BUFFER_DURATION (outbuf) = gst_utils_clock_time_scale (GST_SECOND,
         src->rate_denominator, src->rate_numerator);
   }
 
   src->n_frames++;
   if (src->rate_numerator != 0) {
-    src->running_time = gst_utils_clocktime_scale (src->n_frames * GST_SECOND,
+    src->running_time = gst_utils_clock_time_scale (src->n_frames * GST_SECOND,
         src->rate_denominator, src->rate_numerator);
   }