From b7c4aa541ae5bfa6068820456bf389cb397a3b19 Mon Sep 17 00:00:00 2001
From: "Kevin P. Fleming" <kpfleming@digium.com>
Date: Tue, 21 Jun 2005 01:30:10 +0000
Subject: [PATCH] handle resync delay properly (bug #4560)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5953 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 jitterbuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jitterbuf.c b/jitterbuf.c
index 16dd4bfe7a..97d17e0354 100755
--- a/jitterbuf.c
+++ b/jitterbuf.c
@@ -135,7 +135,7 @@ static int history_put(jitterbuf *jb, long ts, long now, long ms)
 
 				jb_warn("Resyncing the jb. last_delay %ld, this delay %ld, threshold %ld, new offset %ld\n", jb->info.last_delay, delay, threshold, ts - now);
 				jb->info.resync_offset = ts - now;
-				jb->info.last_delay = 0; /* after resync, frame is right on time */
+				jb->info.last_delay = delay = 0; /* after resync, frame is right on time */
 			} else {
 				return -1;
 			}
-- 
GitLab