rtpjitterbuffer: fix compiler warning
authorThijs Vermeir <thijsvermeir@gmail.com>
Wed, 2 Jun 2010 13:30:47 +0000 (15:30 +0200)
committerThijs Vermeir <thijsvermeir@gmail.com>
Wed, 2 Jun 2010 13:32:36 +0000 (15:32 +0200)
unused variable â€˜estimated’

gst/rtpmanager/gstrtpjitterbuffer.c

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