diff options
-rw-r--r-- | ChangeLog | 6 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | gst/rtpmanager/gstrtpjitterbuffer.c | 2 |
3 files changed, 7 insertions, 1 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: diff --git a/common b/common -Subproject dbf8f3aeceb6e57de097951a670cd853b4886ad +Subproject 2d9c09df0fe4ad3f570fea9f649cfc6c4511080 diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c index 30f961dc..df68e247 100644 --- a/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/gst/rtpmanager/gstrtpjitterbuffer.c @@ -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 */ |