OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/media/base/mediaconstants.h" | 11 #include "webrtc/media/base/mediaconstants.h" |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 namespace cricket { | 15 namespace cricket { |
16 | 16 |
17 const int kVideoCodecClockrate = 90000; | 17 const int kVideoCodecClockrate = 90000; |
18 const int kDataCodecClockrate = 90000; | 18 const int kDataCodecClockrate = 90000; |
19 const int kDataMaxBandwidth = 30720; // bps | 19 const int kDataMaxBandwidth = 30720; // bps |
20 | 20 |
21 const float kHighSystemCpuThreshold = 0.85f; | 21 const float kHighSystemCpuThreshold = 0.85f; |
22 const float kLowSystemCpuThreshold = 0.65f; | 22 const float kLowSystemCpuThreshold = 0.65f; |
23 const float kProcessCpuThreshold = 0.10f; | 23 const float kProcessCpuThreshold = 0.10f; |
24 | 24 |
25 const char kRtxCodecName[] = "rtx"; | 25 const char kRtxCodecName[] = "rtx"; |
26 const char kRedCodecName[] = "red"; | 26 const char kRedCodecName[] = "red"; |
27 const char kUlpfecCodecName[] = "ulpfec"; | 27 const char kUlpfecCodecName[] = "ulpfec"; |
28 | 28 |
| 29 // TODO(brandtr): Change this to 'flexfec' when we are confident that the |
| 30 // header format is not changing anymore. |
| 31 const char kFlexfecCodecName[] = "flexfec-03"; |
| 32 |
| 33 // draft-ietf-payload-flexible-fec-scheme-02.txt |
| 34 const char kFlexfecFmtpRepairWindow[] = "repair-window"; |
| 35 |
29 const char kCodecParamAssociatedPayloadType[] = "apt"; | 36 const char kCodecParamAssociatedPayloadType[] = "apt"; |
30 | 37 |
31 const char kOpusCodecName[] = "opus"; | 38 const char kOpusCodecName[] = "opus"; |
32 const char kIsacCodecName[] = "isac"; | 39 const char kIsacCodecName[] = "isac"; |
33 const char kL16CodecName[] = "l16"; | 40 const char kL16CodecName[] = "l16"; |
34 const char kG722CodecName[] = "g722"; | 41 const char kG722CodecName[] = "g722"; |
35 const char kIlbcCodecName[] = "ilbc"; | 42 const char kIlbcCodecName[] = "ilbc"; |
36 const char kPcmuCodecName[] = "pcmu"; | 43 const char kPcmuCodecName[] = "pcmu"; |
37 const char kPcmaCodecName[] = "pcma"; | 44 const char kPcmaCodecName[] = "pcma"; |
38 const char kCnCodecName[] = "cn"; | 45 const char kCnCodecName[] = "cn"; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 const char kH264FmtpProfileLevelId[] = "profile-level-id"; | 106 const char kH264FmtpProfileLevelId[] = "profile-level-id"; |
100 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; | 107 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; |
101 const char kH264FmtpPacketizationMode[] = "packetization-mode"; | 108 const char kH264FmtpPacketizationMode[] = "packetization-mode"; |
102 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; | 109 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; |
103 | 110 |
104 const int kDefaultVp8PlType = 100; | 111 const int kDefaultVp8PlType = 100; |
105 const int kDefaultVp9PlType = 101; | 112 const int kDefaultVp9PlType = 101; |
106 const int kDefaultH264PlType = 107; | 113 const int kDefaultH264PlType = 107; |
107 const int kDefaultRedPlType = 116; | 114 const int kDefaultRedPlType = 116; |
108 const int kDefaultUlpfecType = 117; | 115 const int kDefaultUlpfecType = 117; |
| 116 const int kDefaultFlexfecPlType = 118; |
109 const int kDefaultRtxVp8PlType = 96; | 117 const int kDefaultRtxVp8PlType = 96; |
110 const int kDefaultRtxVp9PlType = 97; | 118 const int kDefaultRtxVp9PlType = 97; |
111 const int kDefaultRtxRedPlType = 98; | 119 const int kDefaultRtxRedPlType = 98; |
112 const int kDefaultRtxH264PlType = 99; | 120 const int kDefaultRtxH264PlType = 99; |
113 | 121 |
114 const int kDefaultVideoMaxFramerate = 60; | 122 const int kDefaultVideoMaxFramerate = 60; |
115 } // namespace cricket | 123 } // namespace cricket |
OLD | NEW |