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

Side by Side Diff: webrtc/test/call_test.cc

Issue 1416783006: Register header extensions in RtpRtcpObserver to avoid log spam. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 5 years, 1 month 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
« no previous file with comments | « webrtc/test/call_test.h ('k') | webrtc/test/constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 #include "webrtc/test/call_test.h" 10 #include "webrtc/test/call_test.h"
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 const uint8_t CallTest::kFakeSendPayloadType = 125; 179 const uint8_t CallTest::kFakeSendPayloadType = 125;
180 const uint8_t CallTest::kSendRtxPayloadType = 98; 180 const uint8_t CallTest::kSendRtxPayloadType = 98;
181 const uint8_t CallTest::kRedPayloadType = 118; 181 const uint8_t CallTest::kRedPayloadType = 118;
182 const uint8_t CallTest::kRtxRedPayloadType = 99; 182 const uint8_t CallTest::kRtxRedPayloadType = 99;
183 const uint8_t CallTest::kUlpfecPayloadType = 119; 183 const uint8_t CallTest::kUlpfecPayloadType = 119;
184 const uint32_t CallTest::kSendRtxSsrcs[kNumSsrcs] = {0xBADCAFD, 0xBADCAFE, 184 const uint32_t CallTest::kSendRtxSsrcs[kNumSsrcs] = {0xBADCAFD, 0xBADCAFE,
185 0xBADCAFF}; 185 0xBADCAFF};
186 const uint32_t CallTest::kSendSsrcs[kNumSsrcs] = {0xC0FFED, 0xC0FFEE, 0xC0FFEF}; 186 const uint32_t CallTest::kSendSsrcs[kNumSsrcs] = {0xC0FFED, 0xC0FFEE, 0xC0FFEF};
187 const uint32_t CallTest::kReceiverLocalSsrc = 0x123456; 187 const uint32_t CallTest::kReceiverLocalSsrc = 0x123456;
188 const int CallTest::kNackRtpHistoryMs = 1000; 188 const int CallTest::kNackRtpHistoryMs = 1000;
189 const int CallTest::kAbsSendTimeExtensionId = 7;
190 189
191 BaseTest::BaseTest(unsigned int timeout_ms) : RtpRtcpObserver(timeout_ms) { 190 BaseTest::BaseTest(unsigned int timeout_ms) : RtpRtcpObserver(timeout_ms) {
192 } 191 }
193 192
194 BaseTest::~BaseTest() { 193 BaseTest::~BaseTest() {
195 } 194 }
196 195
197 Call::Config BaseTest::GetSenderCallConfig() { 196 Call::Config BaseTest::GetSenderCallConfig() {
198 return Call::Config(); 197 return Call::Config();
199 } 198 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 235
237 EndToEndTest::EndToEndTest(unsigned int timeout_ms) : BaseTest(timeout_ms) { 236 EndToEndTest::EndToEndTest(unsigned int timeout_ms) : BaseTest(timeout_ms) {
238 } 237 }
239 238
240 bool EndToEndTest::ShouldCreateReceivers() const { 239 bool EndToEndTest::ShouldCreateReceivers() const {
241 return true; 240 return true;
242 } 241 }
243 242
244 } // namespace test 243 } // namespace test
245 } // namespace webrtc 244 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/test/call_test.h ('k') | webrtc/test/constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698