From: Joshua Colp Date: Wed, 15 Aug 2007 14:40:23 +0000 (+0000) Subject: (closes issue #10440) X-Git-Tag: 1.4.12.1~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dbbfcdc250fb7887b981380b5191ee9f25516f3;p=thirdparty%2Fasterisk.git (closes issue #10440) Reported by: irroot (closes issue #10454) Reported by: flo_turc Increase maximum timestamp skew to 120. 20 was apparently far too low. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@79553 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/rtp.c b/main/rtp.c index 4520e574a4..e47453278e 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -57,7 +57,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/unaligned.h" #include "asterisk/utils.h" -#define MAX_TIMESTAMP_SKEW 20 +#define MAX_TIMESTAMP_SKEW 120 #define RTP_SEQ_MOD (1<<16) /*!< A sequence number can't be more than 16 bits */ #define RTCP_DEFAULT_INTERVALMS 5000 /*!< Default milli-seconds between RTCP reports we send */