| OLD | NEW |
| 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 Loading... |
| 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 (_volumeControl) | |
| 54 TEST_LOG(" VolumeControl\n"); | |
| 55 if (_apm) | 53 if (_apm) |
| 56 TEST_LOG(" AudioProcessing\n"); | 54 TEST_LOG(" AudioProcessing\n"); |
| 57 ANL(); | 55 ANL(); |
| 58 TEST_LOG("Excluded sub APIs:\n\n"); | 56 TEST_LOG("Excluded sub APIs:\n\n"); |
| 59 if (!_base) | 57 if (!_base) |
| 60 TEST_LOG(" Base\n"); | 58 TEST_LOG(" Base\n"); |
| 61 if (!_codec) | 59 if (!_codec) |
| 62 TEST_LOG(" Codec\n"); | 60 TEST_LOG(" Codec\n"); |
| 63 if (!_file) | 61 if (!_file) |
| 64 TEST_LOG(" File\n"); | 62 TEST_LOG(" File\n"); |
| 65 if (!_hardware) | 63 if (!_hardware) |
| 66 TEST_LOG(" Hardware\n"); | 64 TEST_LOG(" Hardware\n"); |
| 67 if (!_netEqStats) | 65 if (!_netEqStats) |
| 68 TEST_LOG(" NetEqStats\n"); | 66 TEST_LOG(" NetEqStats\n"); |
| 69 if (!_network) | 67 if (!_network) |
| 70 TEST_LOG(" Network\n"); | 68 TEST_LOG(" Network\n"); |
| 71 if (!_rtp_rtcp) | 69 if (!_rtp_rtcp) |
| 72 TEST_LOG(" RTP_RTCP\n"); | 70 TEST_LOG(" RTP_RTCP\n"); |
| 73 if (!_volumeControl) | |
| 74 TEST_LOG(" VolumeControl\n"); | |
| 75 if (!_apm) | 71 if (!_apm) |
| 76 TEST_LOG(" AudioProcessing\n"); | 72 TEST_LOG(" AudioProcessing\n"); |
| 77 ANL(); | 73 ANL(); |
| 78 } | 74 } |
| 79 } // namespace voetest | 75 } // namespace voetest |
| 80 | 76 |
| 81 int RunInManualMode() { | 77 int RunInManualMode() { |
| 82 using namespace voetest; | 78 using namespace voetest; |
| 83 | 79 |
| 84 SubAPIManager api_manager; | 80 SubAPIManager api_manager; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 google::AllowCommandLineReparsing(); | 116 google::AllowCommandLineReparsing(); |
| 121 google::ParseCommandLineFlags(&argc, &argv, true); | 117 google::ParseCommandLineFlags(&argc, &argv, true); |
| 122 | 118 |
| 123 if (FLAGS_automated) { | 119 if (FLAGS_automated) { |
| 124 return RunInAutomatedMode(); | 120 return RunInAutomatedMode(); |
| 125 } | 121 } |
| 126 | 122 |
| 127 return RunInManualMode(); | 123 return RunInManualMode(); |
| 128 } | 124 } |
| 129 #endif //#if !defined(WEBRTC_IOS) | 125 #endif //#if !defined(WEBRTC_IOS) |
| OLD | NEW |