| 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_NETEQ_NORMAL_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_NORMAL_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NORMAL_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NORMAL_H_ |
| 13 | 13 |
| 14 #include <string.h> // Access to size_t. | 14 #include <string.h> // Access to size_t. |
| 15 | 15 |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "webrtc/base/checks.h" | |
| 19 #include "webrtc/base/constructormagic.h" | |
| 20 #include "webrtc/base/safe_conversions.h" | |
| 21 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" | 18 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" |
| 22 #include "webrtc/modules/audio_coding/neteq/defines.h" | 19 #include "webrtc/modules/audio_coding/neteq/defines.h" |
| 20 #include "webrtc/rtc_base/checks.h" |
| 21 #include "webrtc/rtc_base/constructormagic.h" |
| 22 #include "webrtc/rtc_base/safe_conversions.h" |
| 23 #include "webrtc/typedefs.h" | 23 #include "webrtc/typedefs.h" |
| 24 | 24 |
| 25 namespace webrtc { | 25 namespace webrtc { |
| 26 | 26 |
| 27 // Forward declarations. | 27 // Forward declarations. |
| 28 class BackgroundNoise; | 28 class BackgroundNoise; |
| 29 class DecoderDatabase; | 29 class DecoderDatabase; |
| 30 class Expand; | 30 class Expand; |
| 31 | 31 |
| 32 // This class provides the "Normal" DSP operation, that is performed when | 32 // This class provides the "Normal" DSP operation, that is performed when |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 const BackgroundNoise& background_noise_; | 66 const BackgroundNoise& background_noise_; |
| 67 Expand* expand_; | 67 Expand* expand_; |
| 68 const size_t samples_per_ms_; | 68 const size_t samples_per_ms_; |
| 69 const int16_t default_win_slope_Q14_; | 69 const int16_t default_win_slope_Q14_; |
| 70 | 70 |
| 71 RTC_DISALLOW_COPY_AND_ASSIGN(Normal); | 71 RTC_DISALLOW_COPY_AND_ASSIGN(Normal); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace webrtc | 74 } // namespace webrtc |
| 75 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NORMAL_H_ | 75 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NORMAL_H_ |
| OLD | NEW |