1/*
2 *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
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
11#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_
12#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_
13
14// Configuration file for RTP utilities (RTPSender, RTPReceiver ...)
15namespace webrtc {
16enum { NACK_BYTECOUNT_SIZE = 60 };  // size of our NACK history
17// A sanity for the NACK list parsing at the send-side.
18enum { kSendSideNackListSizeSanity = 20000 };
19enum { kDefaultMaxReorderingThreshold = 50 };  // In sequence numbers.
20enum { kRtcpMaxNackFields = 253 };
21
22enum { RTCP_INTERVAL_VIDEO_MS = 1000 };
23enum { RTCP_INTERVAL_AUDIO_MS = 5000 };
24enum { RTCP_SEND_BEFORE_KEY_FRAME_MS = 100 };
25enum { RTCP_MAX_REPORT_BLOCKS = 31 };  // RFC 3550 page 37
26enum { RTCP_MIN_FRAME_LENGTH_MS = 17 };
27enum {
28  kRtcpAppCode_DATA_SIZE = 32 * 4
29};  // multiple of 4, this is not a limitation of the size
30enum { RTCP_RPSI_DATA_SIZE = 30 };
31enum { RTCP_NUMBER_OF_SR = 60 };
32
33enum { MAX_NUMBER_OF_TEMPORAL_ID = 8 };              // RFC
34enum { MAX_NUMBER_OF_DEPENDENCY_QUALITY_ID = 128 };  // RFC
35enum { MAX_NUMBER_OF_REMB_FEEDBACK_SSRCS = 255 };
36
37enum { BW_HISTORY_SIZE = 35 };
38
39#define MIN_AUDIO_BW_MANAGEMENT_BITRATE 6
40#define MIN_VIDEO_BW_MANAGEMENT_BITRATE 30
41
42enum { DTMF_OUTBAND_MAX = 20 };
43
44enum { RTP_MAX_BURST_SLEEP_TIME = 500 };
45enum { RTP_AUDIO_LEVEL_UNIQUE_ID = 0xbede };
46enum { RTP_MAX_PACKETS_PER_FRAME = 512 };  // must be multiple of 32
47}  // namespace webrtc
48
49#endif  // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_CONFIG_H_
50