| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 if (_file) | 45 if (_file) |
| 46 TEST_LOG(" File\n"); | 46 TEST_LOG(" File\n"); |
| 47 if (_hardware) | 47 if (_hardware) |
| 48 TEST_LOG(" Hardware\n"); | 48 TEST_LOG(" Hardware\n"); |
| 49 if (_netEqStats) | 49 if (_netEqStats) |
| 50 TEST_LOG(" NetEqStats\n"); | 50 TEST_LOG(" NetEqStats\n"); |
| 51 if (_network) | 51 if (_network) |
| 52 TEST_LOG(" Network\n"); | 52 TEST_LOG(" Network\n"); |
| 53 if (_rtp_rtcp) | 53 if (_rtp_rtcp) |
| 54 TEST_LOG(" RTP_RTCP\n"); | 54 TEST_LOG(" RTP_RTCP\n"); |
| 55 if (_videoSync) | |
| 56 TEST_LOG(" VideoSync\n"); | |
| 57 if (_volumeControl) | 55 if (_volumeControl) |
| 58 TEST_LOG(" VolumeControl\n"); | 56 TEST_LOG(" VolumeControl\n"); |
| 59 if (_apm) | 57 if (_apm) |
| 60 TEST_LOG(" AudioProcessing\n"); | 58 TEST_LOG(" AudioProcessing\n"); |
| 61 ANL(); | 59 ANL(); |
| 62 TEST_LOG("Excluded sub APIs:\n\n"); | 60 TEST_LOG("Excluded sub APIs:\n\n"); |
| 63 if (!_base) | 61 if (!_base) |
| 64 TEST_LOG(" Base\n"); | 62 TEST_LOG(" Base\n"); |
| 65 if (!_codec) | 63 if (!_codec) |
| 66 TEST_LOG(" Codec\n"); | 64 TEST_LOG(" Codec\n"); |
| 67 if (!_externalMedia) | 65 if (!_externalMedia) |
| 68 TEST_LOG(" ExternamMedia\n"); | 66 TEST_LOG(" ExternamMedia\n"); |
| 69 if (!_file) | 67 if (!_file) |
| 70 TEST_LOG(" File\n"); | 68 TEST_LOG(" File\n"); |
| 71 if (!_hardware) | 69 if (!_hardware) |
| 72 TEST_LOG(" Hardware\n"); | 70 TEST_LOG(" Hardware\n"); |
| 73 if (!_netEqStats) | 71 if (!_netEqStats) |
| 74 TEST_LOG(" NetEqStats\n"); | 72 TEST_LOG(" NetEqStats\n"); |
| 75 if (!_network) | 73 if (!_network) |
| 76 TEST_LOG(" Network\n"); | 74 TEST_LOG(" Network\n"); |
| 77 if (!_rtp_rtcp) | 75 if (!_rtp_rtcp) |
| 78 TEST_LOG(" RTP_RTCP\n"); | 76 TEST_LOG(" RTP_RTCP\n"); |
| 79 if (!_videoSync) | |
| 80 TEST_LOG(" VideoSync\n"); | |
| 81 if (!_volumeControl) | 77 if (!_volumeControl) |
| 82 TEST_LOG(" VolumeControl\n"); | 78 TEST_LOG(" VolumeControl\n"); |
| 83 if (!_apm) | 79 if (!_apm) |
| 84 TEST_LOG(" AudioProcessing\n"); | 80 TEST_LOG(" AudioProcessing\n"); |
| 85 ANL(); | 81 ANL(); |
| 86 } | 82 } |
| 87 } // namespace voetest | 83 } // namespace voetest |
| 88 | 84 |
| 89 int RunInManualMode() { | 85 int RunInManualMode() { |
| 90 using namespace voetest; | 86 using namespace voetest; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 google::AllowCommandLineReparsing(); | 124 google::AllowCommandLineReparsing(); |
| 129 google::ParseCommandLineFlags(&argc, &argv, true); | 125 google::ParseCommandLineFlags(&argc, &argv, true); |
| 130 | 126 |
| 131 if (FLAGS_automated) { | 127 if (FLAGS_automated) { |
| 132 return RunInAutomatedMode(); | 128 return RunInAutomatedMode(); |
| 133 } | 129 } |
| 134 | 130 |
| 135 return RunInManualMode(); | 131 return RunInManualMode(); |
| 136 } | 132 } |
| 137 #endif //#if !defined(WEBRTC_IOS) | 133 #endif //#if !defined(WEBRTC_IOS) |
| OLD | NEW |