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

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: Cleanups after merge 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 extern const char kRtpAbsoluteSenderTimeHeaderExtension[]; 147 extern const char kRtpAbsoluteSenderTimeHeaderExtension[];
148 148
149 // Header extension for coordination of video orientation, see url for details: 149 // 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/ 150 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/
151 // ts_126114v120700p.pdf 151 // ts_126114v120700p.pdf
152 extern const int kRtpVideoRotationHeaderExtensionDefaultId; 152 extern const int kRtpVideoRotationHeaderExtensionDefaultId;
153 extern const char kRtpVideoRotationHeaderExtension[]; 153 extern const char kRtpVideoRotationHeaderExtension[];
154 // We don't support 6 bit CVO. Added here for testing purpose. 154 // We don't support 6 bit CVO. Added here for testing purpose.
155 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[]; 155 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[];
156 156
157 // Header extension for transport sequence number, see url for details:
158 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
159 extern const int kRtpTransportSequenceNumberHeaderExtensionDefaultId;
160 extern const char kRtpTransportSequenceNumberHeaderExtension[];
161
157 extern const int kNumDefaultUnsignalledVideoRecvStreams; 162 extern const int kNumDefaultUnsignalledVideoRecvStreams;
158 163
159 extern const char kVp8CodecName[]; 164 extern const char kVp8CodecName[];
160 extern const char kVp9CodecName[]; 165 extern const char kVp9CodecName[];
161 extern const char kH264CodecName[]; 166 extern const char kH264CodecName[];
162 167
163 extern const int kDefaultVp8PlType; 168 extern const int kDefaultVp8PlType;
164 extern const int kDefaultVp9PlType; 169 extern const int kDefaultVp9PlType;
165 extern const int kDefaultH264PlType; 170 extern const int kDefaultH264PlType;
166 extern const int kDefaultRedPlType; 171 extern const int kDefaultRedPlType;
167 extern const int kDefaultUlpfecType; 172 extern const int kDefaultUlpfecType;
168 extern const int kDefaultRtxVp8PlType; 173 extern const int kDefaultRtxVp8PlType;
169 174
170 extern const int kDefaultVideoMaxWidth; 175 extern const int kDefaultVideoMaxWidth;
171 extern const int kDefaultVideoMaxHeight; 176 extern const int kDefaultVideoMaxHeight;
172 extern const int kDefaultVideoMaxFramerate; 177 extern const int kDefaultVideoMaxFramerate;
173 } // namespace cricket 178 } // namespace cricket
174 179
175 #endif // TALK_MEDIA_BASE_CONSTANTS_H_ 180 #endif // TALK_MEDIA_BASE_CONSTANTS_H_
176 181
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698