rtpjitterbuffer: remove dead struct member
authorMark Nauwelaerts <mnauw@users.sourceforge.net>
Sun, 13 Sep 2015 13:40:09 +0000 (15:40 +0200)
committerMark Nauwelaerts <mnauw@users.sourceforge.net>
Sun, 13 Sep 2015 13:41:03 +0000 (15:41 +0200)
gst/rtpmanager/gstrtpjitterbuffer.c

index a84f574..81604cf 100644 (file)
@@ -273,7 +273,6 @@ struct _GstRtpJitterBufferPrivate
 
   /* the next expected seqnum we receive */
   GstClockTime last_in_dts;
-  guint32 last_in_seqnum;
   guint32 next_in_seqnum;
 
   GArray *timers;
@@ -2548,7 +2547,6 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent,
         priv->last_popped_seqnum = -1;
         priv->next_seqnum = seqnum;
 
-        priv->last_in_seqnum = -1;
         priv->last_in_dts = -1;
         priv->next_in_seqnum = -1;
 
@@ -2619,7 +2617,6 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent,
   }
 
   if (do_next_seqnum) {
-    priv->last_in_seqnum = seqnum;
     priv->last_in_dts = dts;
     priv->next_in_seqnum = (seqnum + 1) & 0xffff;
   }