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 /gst/rtpmanager | |
parent | 065dc43a59df1b122a05325cba389ad760771dc0 (diff) | |
download | gst-plugins-bad-cf965d711c54d9058169598eaf51db2c921d3147.tar.gz gst-plugins-bad-cf965d711c54d9058169598eaf51db2c921d3147.tar.bz2 gst-plugins-bad-cf965d711c54d9058169598eaf51db2c921d3147.zip |
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.
Diffstat (limited to 'gst/rtpmanager')
-rw-r--r-- | gst/rtpmanager/gstrtpjitterbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |