rtpjitterbuffer: fix compiler warning

unused variable ‘estimated’
This commit is contained in:
Thijs Vermeir 2010-06-02 15:30:47 +02:00
parent 84d45b900c
commit 0bb2be3a7e

View file

@ -1500,10 +1500,11 @@ flushing:
return FALSE; return FALSE;
} }
} }
static GstClockTime static GstClockTime
compute_elapsed (GstRtpJitterBuffer * jitterbuffer, GstBuffer * outbuf) compute_elapsed (GstRtpJitterBuffer * jitterbuffer, GstBuffer * outbuf)
{ {
guint64 ext_time, elapsed, estimated; guint64 ext_time, elapsed;
guint32 rtp_time; guint32 rtp_time;
GstRtpJitterBufferPrivate *priv; GstRtpJitterBufferPrivate *priv;