Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: talk/media/base/constants.h

Issue 1363573002: Wire up transport sequence number / send time callbacks to webrtc via libjingle. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: No changes to const parameters. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
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 27 matching lines...) Expand all
147 extern const char kRtpAbsoluteSenderTimeHeaderExtension[]; 150 extern const char kRtpAbsoluteSenderTimeHeaderExtension[];
148 151
149 // Header extension for coordination of video orientation, see url for details: 152 // Header extension for coordination of video orientation, see url for details:
150 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ 153 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/
151 // ts_126114v120700p.pdf 154 // ts_126114v120700p.pdf
152 extern const int kRtpVideoRotationHeaderExtensionDefaultId; 155 extern const int kRtpVideoRotationHeaderExtensionDefaultId;
153 extern const char kRtpVideoRotationHeaderExtension[]; 156 extern const char kRtpVideoRotationHeaderExtension[];
154 // We don't support 6 bit CVO. Added here for testing purpose. 157 // We don't support 6 bit CVO. Added here for testing purpose.
155 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[]; 158 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[];
156 159
160 // Header extension for transport sequence number, see url for details:
161 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
162 extern const int kRtpTransportSequenceNumberHeaderExtensionDefaultId;
163 extern const char kRtpTransportSequenceNumberHeaderExtension[];
164
157 extern const int kNumDefaultUnsignalledVideoRecvStreams; 165 extern const int kNumDefaultUnsignalledVideoRecvStreams;
158 166
159 extern const char kVp8CodecName[]; 167 extern const char kVp8CodecName[];
160 extern const char kVp9CodecName[]; 168 extern const char kVp9CodecName[];
161 extern const char kH264CodecName[]; 169 extern const char kH264CodecName[];
162 170
163 extern const int kDefaultVp8PlType; 171 extern const int kDefaultVp8PlType;
164 extern const int kDefaultVp9PlType; 172 extern const int kDefaultVp9PlType;
165 extern const int kDefaultH264PlType; 173 extern const int kDefaultH264PlType;
166 extern const int kDefaultRedPlType; 174 extern const int kDefaultRedPlType;
167 extern const int kDefaultUlpfecType; 175 extern const int kDefaultUlpfecType;
168 extern const int kDefaultRtxVp8PlType; 176 extern const int kDefaultRtxVp8PlType;
169 177
170 extern const int kDefaultVideoMaxWidth; 178 extern const int kDefaultVideoMaxWidth;
171 extern const int kDefaultVideoMaxHeight; 179 extern const int kDefaultVideoMaxHeight;
172 extern const int kDefaultVideoMaxFramerate; 180 extern const int kDefaultVideoMaxFramerate;
173 } // namespace cricket 181 } // namespace cricket
174 182
175 #endif // TALK_MEDIA_BASE_CONSTANTS_H_ 183 #endif // TALK_MEDIA_BASE_CONSTANTS_H_
176 184
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698