rtpbasedepayload: fix typo in comment

This commit is contained in:
Tim-Philipp Müller 2015-07-07 19:56:52 +01:00
parent fbf2773b2e
commit 3d7a92b452

View file

@ -394,7 +394,7 @@ gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
GST_TIME_ARGS (pts), GST_TIME_ARGS (dts));
/* Check seqnum. This is a very simple check that makes sure that the seqnums
* are striclty increasing, dropping anything that is out of the ordinary. We
* are strictly increasing, dropping anything that is out of the ordinary. We
* can only do this when the next_seqnum is known. */
if (G_LIKELY (priv->next_seqnum != -1)) {
gap = gst_rtp_buffer_compare_seqnum (seqnum, priv->next_seqnum);