mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
gst/rtpmanager/gstrtpjitterbuffer.c: Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
Original commit message from CVS: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop): Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
This commit is contained in:
parent
065dc43a59
commit
cf965d711c
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-05-12 Jan Schmidt <Jan.Schmidt@sun.com>
|
||||
|
||||
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
||||
(gst_rtp_jitter_buffer_loop):
|
||||
Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
|
||||
|
||||
2008-05-11 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* docs/plugins/Makefile.am:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit dbf8f3aeceb6e57de097951a670cd853b4886ad8
|
||||
Subproject commit 2d9c09df0fe4ad3f570fea9f649cfc6c4511080d
|
|
@ -1103,7 +1103,7 @@ again:
|
|||
GstClockTime sync_time;
|
||||
GstClockReturn ret;
|
||||
GstClock *clock;
|
||||
GstClockTime duration = -1;
|
||||
GstClockTime duration = GST_CLOCK_TIME_NONE;
|
||||
|
||||
if (gap > 0) {
|
||||
/* we have a gap */
|
||||
|
|
Loading…
Reference in a new issue