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 15 matching lines...) Expand all Loading... |
26 #include "webrtc/modules/audio_coding/main/include/audio_coding_module_typedefs.
h" | 26 #include "webrtc/modules/audio_coding/main/include/audio_coding_module_typedefs.
h" |
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/include/module_common_types.h" |
37 #include "webrtc/system_wrappers/include/clock.h" | 37 #include "webrtc/system_wrappers/include/clock.h" |
38 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 38 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
39 #include "webrtc/system_wrappers/include/event_wrapper.h" | 39 #include "webrtc/system_wrappers/include/event_wrapper.h" |
40 #include "webrtc/system_wrappers/include/sleep.h" | 40 #include "webrtc/system_wrappers/include/sleep.h" |
41 #include "webrtc/system_wrappers/include/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; |
(...skipping 1712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1759 Run(16000, 8000, 1000); | 1759 Run(16000, 8000, 1000); |
1760 } | 1760 } |
1761 | 1761 |
1762 TEST_F(AcmSwitchingOutputFrequencyOldApi, Toggle8KhzTo16Khz) { | 1762 TEST_F(AcmSwitchingOutputFrequencyOldApi, Toggle8KhzTo16Khz) { |
1763 Run(8000, 16000, 1000); | 1763 Run(8000, 16000, 1000); |
1764 } | 1764 } |
1765 | 1765 |
1766 #endif | 1766 #endif |
1767 | 1767 |
1768 } // namespace webrtc | 1768 } // namespace webrtc |
OLD | NEW |