From 3d7a92b4525bde89603f87e220570840b4b89bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 7 Jul 2015 19:56:52 +0100 Subject: [PATCH] rtpbasedepayload: fix typo in comment --- gst-libs/gst/rtp/gstrtpbasedepayload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/rtp/gstrtpbasedepayload.c b/gst-libs/gst/rtp/gstrtpbasedepayload.c index 3e5b995864..4f351b26e5 100644 --- a/gst-libs/gst/rtp/gstrtpbasedepayload.c +++ b/gst-libs/gst/rtp/gstrtpbasedepayload.c @@ -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);