| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 16 matching lines...) Expand all Loading... |
| 27 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" | 27 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" |
| 28 #include "webrtc/modules/audio_coding/neteq/mock/mock_audio_decoder.h" | 28 #include "webrtc/modules/audio_coding/neteq/mock/mock_audio_decoder.h" |
| 29 #include "webrtc/modules/audio_coding/neteq/tools/audio_checksum.h" | 29 #include "webrtc/modules/audio_coding/neteq/tools/audio_checksum.h" |
| 30 #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" | 30 #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" |
| 31 #include "webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h" | 31 #include "webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h" |
| 32 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" | 32 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" |
| 33 #include "webrtc/modules/audio_coding/neteq/tools/output_audio_file.h" | 33 #include "webrtc/modules/audio_coding/neteq/tools/output_audio_file.h" |
| 34 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" | 34 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" |
| 35 #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" | 35 #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" |
| 36 #include "webrtc/modules/interface/module_common_types.h" | 36 #include "webrtc/modules/interface/module_common_types.h" |
| 37 #include "webrtc/system_wrappers/interface/clock.h" | 37 #include "webrtc/system_wrappers/include/clock.h" |
| 38 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" | 38 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 39 #include "webrtc/system_wrappers/interface/event_wrapper.h" | 39 #include "webrtc/system_wrappers/include/event_wrapper.h" |
| 40 #include "webrtc/system_wrappers/interface/sleep.h" | 40 #include "webrtc/system_wrappers/include/sleep.h" |
| 41 #include "webrtc/system_wrappers/interface/thread_wrapper.h" | 41 #include "webrtc/system_wrappers/include/thread_wrapper.h" |
| 42 #include "webrtc/test/testsupport/fileutils.h" | 42 #include "webrtc/test/testsupport/fileutils.h" |
| 43 #include "webrtc/test/testsupport/gtest_disable.h" | 43 #include "webrtc/test/testsupport/gtest_disable.h" |
| 44 | 44 |
| 45 using ::testing::AtLeast; | 45 using ::testing::AtLeast; |
| 46 using ::testing::Invoke; | 46 using ::testing::Invoke; |
| 47 using ::testing::_; | 47 using ::testing::_; |
| 48 | 48 |
| 49 namespace webrtc { | 49 namespace webrtc { |
| 50 | 50 |
| 51 namespace { | 51 namespace { |
| (...skipping 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1783 Run(16000, 8000, 1000); | 1783 Run(16000, 8000, 1000); |
| 1784 } | 1784 } |
| 1785 | 1785 |
| 1786 TEST_F(AcmSwitchingOutputFrequencyOldApi, Toggle8KhzTo16Khz) { | 1786 TEST_F(AcmSwitchingOutputFrequencyOldApi, Toggle8KhzTo16Khz) { |
| 1787 Run(8000, 16000, 1000); | 1787 Run(8000, 16000, 1000); |
| 1788 } | 1788 } |
| 1789 | 1789 |
| 1790 #endif | 1790 #endif |
| 1791 | 1791 |
| 1792 } // namespace webrtc | 1792 } // namespace webrtc |
| OLD | NEW |