niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
asapersson@webrtc.org | a768970 | 2012-04-19 07:01:29 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_ |
| 12 | #define MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
| 14 | // Configuration file for RTP utilities (RTPSender, RTPReceiver ...) |
| 15 | namespace webrtc { |
stefan@webrtc.org | becf9c8 | 2013-02-01 15:09:57 +0000 | [diff] [blame] | 16 | enum { kDefaultMaxReorderingThreshold = 50 }; // In sequence numbers. |
stefan@webrtc.org | a271070 | 2013-03-05 09:02:06 +0000 | [diff] [blame] | 17 | enum { kRtcpMaxNackFields = 253 }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 18 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 19 | enum { RTCP_SEND_BEFORE_KEY_FRAME_MS = 100 }; |
| 20 | enum { RTCP_MAX_REPORT_BLOCKS = 31 }; // RFC 3550 page 37 |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 21 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 22 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 23 | #endif // MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_ |