diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-05-12 14:12:08 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-05-12 14:12:08 +0000 |
commit | cf965d711c54d9058169598eaf51db2c921d3147 (patch) | |
tree | fc33fe0715e215157a8c8bdc4d10a5bdb926a7a7 | |
parent | 065dc43a59df1b122a05325cba389ad760771dc0 (diff) |
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.
-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 30f961dc8..df68e2470 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 */ |