gst/rtsp/gstrtspsrc.c: Fix compiler warning by using GST_CLOCK_TIME_NONE to initialis...
authorJan Schmidt <thaytan@mad.scientist.com>
Mon, 8 Oct 2007 17:44:42 +0000 (17:44 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Mon, 8 Oct 2007 17:44:42 +0000 (17:44 +0000)
Original commit message from CVS:
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
a GstClockTime.

ChangeLog
gst/rtsp/gstrtspsrc.c

index 6b3da5b..954a709 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
+
+       * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
+       Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
+       a GstClockTime.
+
 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
 
        * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
index 746d389..1107693 100644 (file)
@@ -1125,7 +1125,7 @@ gst_rtspsrc_flush (GstRTSPSrc * src, gboolean flush)
   GstState state;
   GList *walk;
   GstClock *clock;
-  GstClockTime base_time = -1;
+  GstClockTime base_time = GST_CLOCK_TIME_NONE;
 
   if (flush) {
     event = gst_event_new_flush_start ();