| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 extern const int kPreferredSPropStereo; | 100 extern const int kPreferredSPropStereo; |
| 101 extern const int kPreferredStereo; | 101 extern const int kPreferredStereo; |
| 102 extern const int kPreferredUseInbandFec; | 102 extern const int kPreferredUseInbandFec; |
| 103 | 103 |
| 104 // rtcp-fb messages according to RFC 4585 | 104 // rtcp-fb messages according to RFC 4585 |
| 105 extern const char kRtcpFbParamNack[]; | 105 extern const char kRtcpFbParamNack[]; |
| 106 extern const char kRtcpFbNackParamPli[]; | 106 extern const char kRtcpFbNackParamPli[]; |
| 107 // rtcp-fb messages according to | 107 // rtcp-fb messages according to |
| 108 // http://tools.ietf.org/html/draft-alvestrand-rmcat-remb-00 | 108 // http://tools.ietf.org/html/draft-alvestrand-rmcat-remb-00 |
| 109 extern const char kRtcpFbParamRemb[]; | 109 extern const char kRtcpFbParamRemb[]; |
| 110 // rtcp-fb messages according to |
| 111 // https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-0
1 |
| 112 extern const char kRtcpFbParamTransportCc[]; |
| 110 // ccm submessages according to RFC 5104 | 113 // ccm submessages according to RFC 5104 |
| 111 extern const char kRtcpFbParamCcm[]; | 114 extern const char kRtcpFbParamCcm[]; |
| 112 extern const char kRtcpFbCcmParamFir[]; | 115 extern const char kRtcpFbCcmParamFir[]; |
| 113 // Google specific parameters | 116 // Google specific parameters |
| 114 extern const char kCodecParamMaxBitrate[]; | 117 extern const char kCodecParamMaxBitrate[]; |
| 115 extern const char kCodecParamMinBitrate[]; | 118 extern const char kCodecParamMinBitrate[]; |
| 116 extern const char kCodecParamStartBitrate[]; | 119 extern const char kCodecParamStartBitrate[]; |
| 117 extern const char kCodecParamMaxQuantization[]; | 120 extern const char kCodecParamMaxQuantization[]; |
| 118 extern const char kCodecParamPort[]; | 121 extern const char kCodecParamPort[]; |
| 119 | 122 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 extern const int kDefaultUlpfecType; | 175 extern const int kDefaultUlpfecType; |
| 173 extern const int kDefaultRtxVp8PlType; | 176 extern const int kDefaultRtxVp8PlType; |
| 174 | 177 |
| 175 extern const int kDefaultVideoMaxWidth; | 178 extern const int kDefaultVideoMaxWidth; |
| 176 extern const int kDefaultVideoMaxHeight; | 179 extern const int kDefaultVideoMaxHeight; |
| 177 extern const int kDefaultVideoMaxFramerate; | 180 extern const int kDefaultVideoMaxFramerate; |
| 178 } // namespace cricket | 181 } // namespace cricket |
| 179 | 182 |
| 180 #endif // TALK_MEDIA_BASE_CONSTANTS_H_ | 183 #endif // TALK_MEDIA_BASE_CONSTANTS_H_ |
| 181 | 184 |
| OLD | NEW |