| 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 22 matching lines...) Expand all Loading... |
| 33 namespace voetest { | 33 namespace voetest { |
| 34 | 34 |
| 35 int dummy = 0; // Dummy used in different functions to avoid warnings | 35 int dummy = 0; // Dummy used in different functions to avoid warnings |
| 36 | 36 |
| 37 void SubAPIManager::DisplayStatus() const { | 37 void SubAPIManager::DisplayStatus() const { |
| 38 TEST_LOG("Supported sub APIs:\n\n"); | 38 TEST_LOG("Supported sub APIs:\n\n"); |
| 39 if (_base) | 39 if (_base) |
| 40 TEST_LOG(" Base\n"); | 40 TEST_LOG(" Base\n"); |
| 41 if (_codec) | 41 if (_codec) |
| 42 TEST_LOG(" Codec\n"); | 42 TEST_LOG(" Codec\n"); |
| 43 if (_externalMedia) | |
| 44 TEST_LOG(" ExternalMedia\n"); | |
| 45 if (_file) | 43 if (_file) |
| 46 TEST_LOG(" File\n"); | 44 TEST_LOG(" File\n"); |
| 47 if (_hardware) | 45 if (_hardware) |
| 48 TEST_LOG(" Hardware\n"); | 46 TEST_LOG(" Hardware\n"); |
| 49 if (_netEqStats) | 47 if (_netEqStats) |
| 50 TEST_LOG(" NetEqStats\n"); | 48 TEST_LOG(" NetEqStats\n"); |
| 51 if (_network) | 49 if (_network) |
| 52 TEST_LOG(" Network\n"); | 50 TEST_LOG(" Network\n"); |
| 53 if (_rtp_rtcp) | 51 if (_rtp_rtcp) |
| 54 TEST_LOG(" RTP_RTCP\n"); | 52 TEST_LOG(" RTP_RTCP\n"); |
| 55 if (_videoSync) | 53 if (_videoSync) |
| 56 TEST_LOG(" VideoSync\n"); | 54 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) | |
| 68 TEST_LOG(" ExternamMedia\n"); | |
| 69 if (!_file) | 65 if (!_file) |
| 70 TEST_LOG(" File\n"); | 66 TEST_LOG(" File\n"); |
| 71 if (!_hardware) | 67 if (!_hardware) |
| 72 TEST_LOG(" Hardware\n"); | 68 TEST_LOG(" Hardware\n"); |
| 73 if (!_netEqStats) | 69 if (!_netEqStats) |
| 74 TEST_LOG(" NetEqStats\n"); | 70 TEST_LOG(" NetEqStats\n"); |
| 75 if (!_network) | 71 if (!_network) |
| 76 TEST_LOG(" Network\n"); | 72 TEST_LOG(" Network\n"); |
| 77 if (!_rtp_rtcp) | 73 if (!_rtp_rtcp) |
| 78 TEST_LOG(" RTP_RTCP\n"); | 74 TEST_LOG(" RTP_RTCP\n"); |
| (...skipping 49 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 |