| 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 |
| 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTSTEREO_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTSTEREO_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |
| 13 | 13 |
| 14 #include <math.h> | 14 #include <math.h> |
| 15 | 15 |
| 16 #include "webrtc/base/scoped_ptr.h" | 16 #include "webrtc/base/scoped_ptr.h" |
| 17 #include "webrtc/modules/audio_coding/main/test/ACMTest.h" | 17 #include "webrtc/modules/audio_coding/test/ACMTest.h" |
| 18 #include "webrtc/modules/audio_coding/main/test/Channel.h" | 18 #include "webrtc/modules/audio_coding/test/Channel.h" |
| 19 #include "webrtc/modules/audio_coding/main/test/PCMFile.h" | 19 #include "webrtc/modules/audio_coding/test/PCMFile.h" |
| 20 | 20 |
| 21 #define PCMA_AND_PCMU | 21 #define PCMA_AND_PCMU |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 | 24 |
| 25 enum StereoMonoMode { | 25 enum StereoMonoMode { |
| 26 kNotSet, | 26 kNotSet, |
| 27 kMono, | 27 kMono, |
| 28 kStereo | 28 kStereo |
| 29 }; | 29 }; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 int pcma_pltype_; | 107 int pcma_pltype_; |
| 108 int pcmu_pltype_; | 108 int pcmu_pltype_; |
| 109 #endif | 109 #endif |
| 110 #ifdef WEBRTC_CODEC_OPUS | 110 #ifdef WEBRTC_CODEC_OPUS |
| 111 int opus_pltype_; | 111 int opus_pltype_; |
| 112 #endif | 112 #endif |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace webrtc | 115 } // namespace webrtc |
| 116 | 116 |
| 117 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTSTEREO_H_ | 117 #endif // WEBRTC_MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |
| OLD | NEW |