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

Side by Side Diff: webrtc/call/call_perf_tests.cc

Issue 1366303002: Build https://codereview.webrtc.org/1368843003/ as if with firefox (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@chrome-build
Patch Set: rebase 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
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/BUILD.gn » ('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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 <algorithm> 10 #include <algorithm>
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 voe_network->Release(); 317 voe_network->Release();
318 voe_sync->Release(); 318 voe_sync->Release();
319 319
320 DestroyStreams(); 320 DestroyStreams();
321 321
322 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream); 322 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream);
323 323
324 VoiceEngine::Delete(voice_engine); 324 VoiceEngine::Delete(voice_engine);
325 } 325 }
326 326
327 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioCreatedFirst) { 327 TEST_F(CallPerfTest,
328 DISABLED_PlaysOutAudioAndVideoInSyncWithAudioCreatedFirst) {
328 TestAudioVideoSync(false, true); 329 TestAudioVideoSync(false, true);
329 } 330 }
330 331
331 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoCreatedFirst) { 332 TEST_F(CallPerfTest,
333 DISABLED_PlaysOutAudioAndVideoInSyncWithVideoCreatedFirst) {
332 TestAudioVideoSync(false, false); 334 TestAudioVideoSync(false, false);
333 } 335 }
334 336
335 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithFec) { 337 TEST_F(CallPerfTest, DISABLED_PlaysOutAudioAndVideoInSyncWithFec) {
336 TestAudioVideoSync(true, false); 338 TestAudioVideoSync(true, false);
337 } 339 }
338 340
339 void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config, 341 void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config,
340 int threshold_ms, 342 int threshold_ms,
341 int start_time_ms, 343 int start_time_ms,
342 int run_time_ms) { 344 int run_time_ms) {
343 class CaptureNtpTimeObserver : public test::EndToEndTest, 345 class CaptureNtpTimeObserver : public test::EndToEndTest,
344 public VideoRenderer { 346 public VideoRenderer {
345 public: 347 public:
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 int encoder_inits_; 705 int encoder_inits_;
704 uint32_t last_set_bitrate_; 706 uint32_t last_set_bitrate_;
705 VideoSendStream* send_stream_; 707 VideoSendStream* send_stream_;
706 VideoEncoderConfig encoder_config_; 708 VideoEncoderConfig encoder_config_;
707 } test; 709 } test;
708 710
709 RunBaseTest(&test); 711 RunBaseTest(&test);
710 } 712 }
711 713
712 } // namespace webrtc 714 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698