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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 const char kDtmfCodecName[] = "telephone-event"; | 46 const char kDtmfCodecName[] = "telephone-event"; |
47 | 47 |
48 // draft-spittka-payload-rtp-opus-03.txt | 48 // draft-spittka-payload-rtp-opus-03.txt |
49 const char kCodecParamPTime[] = "ptime"; | 49 const char kCodecParamPTime[] = "ptime"; |
50 const char kCodecParamMaxPTime[] = "maxptime"; | 50 const char kCodecParamMaxPTime[] = "maxptime"; |
51 const char kCodecParamMinPTime[] = "minptime"; | 51 const char kCodecParamMinPTime[] = "minptime"; |
52 const char kCodecParamSPropStereo[] = "sprop-stereo"; | 52 const char kCodecParamSPropStereo[] = "sprop-stereo"; |
53 const char kCodecParamStereo[] = "stereo"; | 53 const char kCodecParamStereo[] = "stereo"; |
54 const char kCodecParamUseInbandFec[] = "useinbandfec"; | 54 const char kCodecParamUseInbandFec[] = "useinbandfec"; |
55 const char kCodecParamUseDtx[] = "usedtx"; | 55 const char kCodecParamUseDtx[] = "usedtx"; |
| 56 const char kCodecParamUseCbr[] = "cbr"; |
56 const char kCodecParamMaxAverageBitrate[] = "maxaveragebitrate"; | 57 const char kCodecParamMaxAverageBitrate[] = "maxaveragebitrate"; |
57 const char kCodecParamMaxPlaybackRate[] = "maxplaybackrate"; | 58 const char kCodecParamMaxPlaybackRate[] = "maxplaybackrate"; |
58 | 59 |
59 const char kCodecParamSctpProtocol[] = "protocol"; | 60 const char kCodecParamSctpProtocol[] = "protocol"; |
60 const char kCodecParamSctpStreams[] = "streams"; | 61 const char kCodecParamSctpStreams[] = "streams"; |
61 | 62 |
62 const char kParamValueTrue[] = "1"; | 63 const char kParamValueTrue[] = "1"; |
63 const char kParamValueEmpty[] = ""; | 64 const char kParamValueEmpty[] = ""; |
64 | 65 |
65 const int kOpusDefaultMaxPTime = 120; | 66 const int kOpusDefaultMaxPTime = 120; |
66 const int kOpusDefaultPTime = 20; | 67 const int kOpusDefaultPTime = 20; |
67 const int kOpusDefaultMinPTime = 3; | 68 const int kOpusDefaultMinPTime = 3; |
68 const int kOpusDefaultSPropStereo = 0; | 69 const int kOpusDefaultSPropStereo = 0; |
69 const int kOpusDefaultStereo = 0; | 70 const int kOpusDefaultStereo = 0; |
70 const int kOpusDefaultUseInbandFec = 0; | 71 const int kOpusDefaultUseInbandFec = 0; |
| 72 const int kOpusDefaultUseCbr = 0; |
71 const int kOpusDefaultUseDtx = 0; | 73 const int kOpusDefaultUseDtx = 0; |
72 const int kOpusDefaultMaxPlaybackRate = 48000; | 74 const int kOpusDefaultMaxPlaybackRate = 48000; |
73 | 75 |
74 const int kPreferredMaxPTime = 120; | 76 const int kPreferredMaxPTime = 120; |
75 const int kPreferredMinPTime = 10; | 77 const int kPreferredMinPTime = 10; |
76 const int kPreferredSPropStereo = 0; | 78 const int kPreferredSPropStereo = 0; |
77 const int kPreferredStereo = 0; | 79 const int kPreferredStereo = 0; |
78 const int kPreferredUseInbandFec = 0; | 80 const int kPreferredUseInbandFec = 0; |
79 | 81 |
80 const char kRtcpFbParamNack[] = "nack"; | 82 const char kRtcpFbParamNack[] = "nack"; |
(...skipping 23 matching lines...) Expand all Loading... |
104 | 106 |
105 // RFC 6184 RTP Payload Format for H.264 video | 107 // RFC 6184 RTP Payload Format for H.264 video |
106 const char kH264FmtpProfileLevelId[] = "profile-level-id"; | 108 const char kH264FmtpProfileLevelId[] = "profile-level-id"; |
107 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; | 109 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; |
108 const char kH264FmtpPacketizationMode[] = "packetization-mode"; | 110 const char kH264FmtpPacketizationMode[] = "packetization-mode"; |
109 const char kH264FmtpSpropParameterSets[] = "sprop-parameter-sets"; | 111 const char kH264FmtpSpropParameterSets[] = "sprop-parameter-sets"; |
110 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; | 112 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; |
111 | 113 |
112 const int kDefaultVideoMaxFramerate = 60; | 114 const int kDefaultVideoMaxFramerate = 60; |
113 } // namespace cricket | 115 } // namespace cricket |
OLD | NEW |