blob: 6863c4c353e2b867459dcb14d8d657f2eab7e455 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
asapersson@webrtc.orga7689702012-04-19 07:01:29 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_
12#define MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
14// Configuration file for RTP utilities (RTPSender, RTPReceiver ...)
15namespace webrtc {
stefan@webrtc.orgbecf9c82013-02-01 15:09:57 +000016enum { kDefaultMaxReorderingThreshold = 50 }; // In sequence numbers.
stefan@webrtc.orga2710702013-03-05 09:02:06 +000017enum { kRtcpMaxNackFields = 253 };
niklase@google.com470e71d2011-07-07 08:21:25 +000018
danilchap162abd32015-12-10 02:39:40 -080019enum { RTCP_SEND_BEFORE_KEY_FRAME_MS = 100 };
20enum { RTCP_MAX_REPORT_BLOCKS = 31 }; // RFC 3550 page 37
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +000021} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +000022
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020023#endif // MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_