From 11296765287f79e82fc0c18b28648997c17eae0d Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 28 Feb 2019 14:21:58 -0500 Subject: [PATCH] TT#50652 fix typo Change-Id: I95f0ea46e00938a44e49413f416432835ee5e088 --- lib/codeclib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codeclib.c b/lib/codeclib.c index 55756333e..452bf6df5 100644 --- a/lib/codeclib.c +++ b/lib/codeclib.c @@ -611,7 +611,7 @@ int decoder_input_data(decoder_t *dec, const str *data, unsigned long ts, // shift pts according to rtp ts shift u_int64_t shift_ts = ts - dec->rtp_ts; if ((shift_ts * 1000) / dec->in_format.clockrate > PACKET_TS_RESET_THRES) { - ilog(LOG_DEBUG, "Timestamp disconinuity detected, resetting timestamp from " + ilog(LOG_DEBUG, "Timestamp discontinuity detected, resetting timestamp from " "%lu to %lu", dec->rtp_ts, ts); // XXX handle lost packets here if timestamps don't line up?