mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
rtpjitterbuffer: fix compiler warning
unused variable ‘estimated’
This commit is contained in:
parent
84d45b900c
commit
0bb2be3a7e
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue