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 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 const int kOpusDefaultMaxPTime = 120; | 58 const int kOpusDefaultMaxPTime = 120; |
59 const int kOpusDefaultPTime = 20; | 59 const int kOpusDefaultPTime = 20; |
60 const int kOpusDefaultMinPTime = 3; | 60 const int kOpusDefaultMinPTime = 3; |
61 const int kOpusDefaultSPropStereo = 0; | 61 const int kOpusDefaultSPropStereo = 0; |
62 const int kOpusDefaultStereo = 0; | 62 const int kOpusDefaultStereo = 0; |
63 const int kOpusDefaultUseInbandFec = 0; | 63 const int kOpusDefaultUseInbandFec = 0; |
64 const int kOpusDefaultUseDtx = 0; | 64 const int kOpusDefaultUseDtx = 0; |
65 const int kOpusDefaultMaxPlaybackRate = 48000; | 65 const int kOpusDefaultMaxPlaybackRate = 48000; |
66 | 66 |
67 const int kPreferredMaxPTime = 60; | 67 const int kPreferredMaxPTime = 120; |
68 const int kPreferredMinPTime = 10; | 68 const int kPreferredMinPTime = 10; |
69 const int kPreferredSPropStereo = 0; | 69 const int kPreferredSPropStereo = 0; |
70 const int kPreferredStereo = 0; | 70 const int kPreferredStereo = 0; |
71 const int kPreferredUseInbandFec = 0; | 71 const int kPreferredUseInbandFec = 0; |
72 | 72 |
73 const char kRtcpFbParamNack[] = "nack"; | 73 const char kRtcpFbParamNack[] = "nack"; |
74 const char kRtcpFbNackParamPli[] = "pli"; | 74 const char kRtcpFbNackParamPli[] = "pli"; |
75 const char kRtcpFbParamRemb[] = "goog-remb"; | 75 const char kRtcpFbParamRemb[] = "goog-remb"; |
76 const char kRtcpFbParamTransportCc[] = "transport-cc"; | 76 const char kRtcpFbParamTransportCc[] = "transport-cc"; |
77 | 77 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 const int kDefaultUlpfecType = 117; | 129 const int kDefaultUlpfecType = 117; |
130 const int kDefaultRtxVp8PlType = 96; | 130 const int kDefaultRtxVp8PlType = 96; |
131 const int kDefaultRtxVp9PlType = 97; | 131 const int kDefaultRtxVp9PlType = 97; |
132 const int kDefaultRtxRedPlType = 98; | 132 const int kDefaultRtxRedPlType = 98; |
133 const int kDefaultRtxH264PlType = 99; | 133 const int kDefaultRtxH264PlType = 99; |
134 | 134 |
135 const int kDefaultVideoMaxWidth = 640; | 135 const int kDefaultVideoMaxWidth = 640; |
136 const int kDefaultVideoMaxHeight = 400; | 136 const int kDefaultVideoMaxHeight = 400; |
137 const int kDefaultVideoMaxFramerate = 30; | 137 const int kDefaultVideoMaxFramerate = 30; |
138 } // namespace cricket | 138 } // namespace cricket |
OLD | NEW |