aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-06 15:27:24 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-06 15:27:24 +0000
commit7e471ac27c8ca96d72c7188de9d2dd68dde8a04a (patch)
tree442c96e9495181e0e90fa3327f2dda7d22c05ca7 /main
parentf6617ad296d50b7f0a8cbb7ce7106807d2ae4b0b (diff)
(closes issue #10355)
Reported by: wdecarne Now that we pass through RTP timestamp information we need to make the allowed timestamp skew considerably less. There are situations where a source may change and due to the timestamp difference the receiver will experience an audio gap since we did not indicate by setting the marker bit that the source changed. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@78172 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rtp.c b/main/rtp.c
index 4e4bde623..4520e574a 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 640
+#define MAX_TIMESTAMP_SKEW 20
#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 */