| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 // Test to verify correct stereo and multi-channel operation. | 11 // Test to verify correct stereo and multi-channel operation. |
| 12 | 12 |
| 13 #include <algorithm> | 13 #include <algorithm> |
| 14 #include <memory> | 14 #include <memory> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <list> | 16 #include <list> |
| 17 | 17 |
| 18 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" | 18 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" |
| 19 #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" | 19 #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" |
| 20 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" | 20 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" |
| 21 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" | 21 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" |
| 22 #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h" | 22 #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h" |
| 23 #include "webrtc/modules/include/module_common_types.h" | 23 #include "webrtc/modules/include/module_common_types.h" |
| 24 #include "webrtc/test/gtest.h" | 24 #include "webrtc/test/gtest.h" |
| 25 #include "webrtc/test/testsupport/fileutils.h" | 25 #include "webrtc/test/testsupport/fileutils.h" |
| 26 | 26 |
| 27 namespace webrtc { | 27 namespace webrtc { |
| 28 | 28 |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 | 427 |
| 428 INSTANTIATE_TEST_CASE_P(MultiChannel, | 428 INSTANTIATE_TEST_CASE_P(MultiChannel, |
| 429 NetEqStereoTestDelays, | 429 NetEqStereoTestDelays, |
| 430 ::testing::ValuesIn(GetTestParameters())); | 430 ::testing::ValuesIn(GetTestParameters())); |
| 431 | 431 |
| 432 INSTANTIATE_TEST_CASE_P(MultiChannel, | 432 INSTANTIATE_TEST_CASE_P(MultiChannel, |
| 433 NetEqStereoTestLosses, | 433 NetEqStereoTestLosses, |
| 434 ::testing::ValuesIn(GetTestParameters())); | 434 ::testing::ValuesIn(GetTestParameters())); |
| 435 | 435 |
| 436 } // namespace webrtc | 436 } // namespace webrtc |
| OLD | NEW |