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

Side by Side Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.cc

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: rebase Created 3 years, 10 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 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 if (_file) 43 if (_file)
44 TEST_LOG(" File\n"); 44 TEST_LOG(" File\n");
45 if (_hardware) 45 if (_hardware)
46 TEST_LOG(" Hardware\n"); 46 TEST_LOG(" Hardware\n");
47 if (_netEqStats) 47 if (_netEqStats)
48 TEST_LOG(" NetEqStats\n"); 48 TEST_LOG(" NetEqStats\n");
49 if (_network) 49 if (_network)
50 TEST_LOG(" Network\n"); 50 TEST_LOG(" Network\n");
51 if (_rtp_rtcp) 51 if (_rtp_rtcp)
52 TEST_LOG(" RTP_RTCP\n"); 52 TEST_LOG(" RTP_RTCP\n");
53 if (_videoSync)
54 TEST_LOG(" VideoSync\n");
55 if (_volumeControl) 53 if (_volumeControl)
56 TEST_LOG(" VolumeControl\n"); 54 TEST_LOG(" VolumeControl\n");
57 if (_apm) 55 if (_apm)
58 TEST_LOG(" AudioProcessing\n"); 56 TEST_LOG(" AudioProcessing\n");
59 ANL(); 57 ANL();
60 TEST_LOG("Excluded sub APIs:\n\n"); 58 TEST_LOG("Excluded sub APIs:\n\n");
61 if (!_base) 59 if (!_base)
62 TEST_LOG(" Base\n"); 60 TEST_LOG(" Base\n");
63 if (!_codec) 61 if (!_codec)
64 TEST_LOG(" Codec\n"); 62 TEST_LOG(" Codec\n");
65 if (!_file) 63 if (!_file)
66 TEST_LOG(" File\n"); 64 TEST_LOG(" File\n");
67 if (!_hardware) 65 if (!_hardware)
68 TEST_LOG(" Hardware\n"); 66 TEST_LOG(" Hardware\n");
69 if (!_netEqStats) 67 if (!_netEqStats)
70 TEST_LOG(" NetEqStats\n"); 68 TEST_LOG(" NetEqStats\n");
71 if (!_network) 69 if (!_network)
72 TEST_LOG(" Network\n"); 70 TEST_LOG(" Network\n");
73 if (!_rtp_rtcp) 71 if (!_rtp_rtcp)
74 TEST_LOG(" RTP_RTCP\n"); 72 TEST_LOG(" RTP_RTCP\n");
75 if (!_videoSync)
76 TEST_LOG(" VideoSync\n");
77 if (!_volumeControl) 73 if (!_volumeControl)
78 TEST_LOG(" VolumeControl\n"); 74 TEST_LOG(" VolumeControl\n");
79 if (!_apm) 75 if (!_apm)
80 TEST_LOG(" AudioProcessing\n"); 76 TEST_LOG(" AudioProcessing\n");
81 ANL(); 77 ANL();
82 } 78 }
83 } // namespace voetest 79 } // namespace voetest
84 80
85 int RunInManualMode() { 81 int RunInManualMode() {
86 using namespace voetest; 82 using namespace voetest;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 google::AllowCommandLineReparsing(); 120 google::AllowCommandLineReparsing();
125 google::ParseCommandLineFlags(&argc, &argv, true); 121 google::ParseCommandLineFlags(&argc, &argv, true);
126 122
127 if (FLAGS_automated) { 123 if (FLAGS_automated) {
128 return RunInAutomatedMode(); 124 return RunInAutomatedMode();
129 } 125 }
130 126
131 return RunInManualMode(); 127 return RunInManualMode();
132 } 128 }
133 #endif //#if !defined(WEBRTC_IOS) 129 #endif //#if !defined(WEBRTC_IOS)
OLDNEW
« no previous file with comments | « webrtc/voice_engine/test/auto_test/voe_standard_test.h ('k') | webrtc/voice_engine/test/auto_test/voe_test_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698