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 |
11 #include "webrtc/modules/audio_coding/codecs/isac/fix/interface/isacfix.h" | 11 #include "webrtc/modules/audio_coding/codecs/isac/fix/include/isacfix.h" |
12 #include "webrtc/modules/audio_coding/codecs/isac/fix/source/settings.h" | 12 #include "webrtc/modules/audio_coding/codecs/isac/fix/source/settings.h" |
13 #include "webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.h" | 13 #include "webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.h" |
14 | 14 |
15 using ::std::string; | 15 using ::std::string; |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 | 18 |
19 static const int kIsacBlockDurationMs = 30; | 19 static const int kIsacBlockDurationMs = 30; |
20 static const int kIsacInputSamplingKhz = 16; | 20 static const int kIsacInputSamplingKhz = 16; |
21 static const int kIsacOutputSamplingKhz = 16; | 21 static const int kIsacOutputSamplingKhz = 16; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 } | 102 } |
103 | 103 |
104 const coding_param param_set[] = | 104 const coding_param param_set[] = |
105 {::std::tr1::make_tuple(1, 32000, string("audio_coding/speech_mono_16kHz"), | 105 {::std::tr1::make_tuple(1, 32000, string("audio_coding/speech_mono_16kHz"), |
106 string("pcm"), true)}; | 106 string("pcm"), true)}; |
107 | 107 |
108 INSTANTIATE_TEST_CASE_P(AllTest, IsacSpeedTest, | 108 INSTANTIATE_TEST_CASE_P(AllTest, IsacSpeedTest, |
109 ::testing::ValuesIn(param_set)); | 109 ::testing::ValuesIn(param_set)); |
110 | 110 |
111 } // namespace webrtc | 111 } // namespace webrtc |
OLD | NEW |