mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
gst/rtsp/gstrtspsrc.c: Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise a GstClockTime.
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.
This commit is contained in:
parent
92e16a65ae
commit
3ca2d477b2
2 changed files with 7 additions and 1 deletions
|
@ -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),
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue