mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
rtpjitterbuffer: remove dead struct member
This commit is contained in:
parent
2a7ba2955c
commit
1e7a3473fd
1 changed files with 0 additions and 3 deletions
|
@ -273,7 +273,6 @@ struct _GstRtpJitterBufferPrivate
|
||||||
|
|
||||||
/* the next expected seqnum we receive */
|
/* the next expected seqnum we receive */
|
||||||
GstClockTime last_in_dts;
|
GstClockTime last_in_dts;
|
||||||
guint32 last_in_seqnum;
|
|
||||||
guint32 next_in_seqnum;
|
guint32 next_in_seqnum;
|
||||||
|
|
||||||
GArray *timers;
|
GArray *timers;
|
||||||
|
@ -2548,7 +2547,6 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent,
|
||||||
priv->last_popped_seqnum = -1;
|
priv->last_popped_seqnum = -1;
|
||||||
priv->next_seqnum = seqnum;
|
priv->next_seqnum = seqnum;
|
||||||
|
|
||||||
priv->last_in_seqnum = -1;
|
|
||||||
priv->last_in_dts = -1;
|
priv->last_in_dts = -1;
|
||||||
priv->next_in_seqnum = -1;
|
priv->next_in_seqnum = -1;
|
||||||
|
|
||||||
|
@ -2619,7 +2617,6 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (do_next_seqnum) {
|
if (do_next_seqnum) {
|
||||||
priv->last_in_seqnum = seqnum;
|
|
||||||
priv->last_in_dts = dts;
|
priv->last_in_dts = dts;
|
||||||
priv->next_in_seqnum = (seqnum + 1) & 0xffff;
|
priv->next_in_seqnum = (seqnum + 1) & 0xffff;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue