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_NETEQ_IMPL_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 #include <string> | 15 #include <string> |
16 | 16 |
17 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
18 #include "webrtc/base/criticalsection.h" | 18 #include "webrtc/base/criticalsection.h" |
19 #include "webrtc/base/optional.h" | 19 #include "webrtc/base/optional.h" |
20 #include "webrtc/base/thread_annotations.h" | 20 #include "webrtc/base/thread_annotations.h" |
21 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" | 21 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" |
22 #include "webrtc/modules/audio_coding/neteq/defines.h" | 22 #include "webrtc/modules/audio_coding/neteq/defines.h" |
23 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" | 23 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" |
24 #include "webrtc/modules/audio_coding/neteq/packet.h" // Declare PacketList. | 24 #include "webrtc/modules/audio_coding/neteq/packet.h" // Declare PacketList. |
25 #include "webrtc/modules/audio_coding/neteq/random_vector.h" | 25 #include "webrtc/modules/audio_coding/neteq/random_vector.h" |
26 #include "webrtc/modules/audio_coding/neteq/rtcp.h" | 26 #include "webrtc/modules/audio_coding/neteq/rtcp.h" |
27 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" | 27 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" |
28 #include "webrtc/modules/audio_coding/neteq/tick_timer.h" | 28 #include "webrtc/modules/audio_coding/neteq/tick_timer.h" |
| 29 #include "webrtc/modules/include/module_common_types.h" |
29 #include "webrtc/typedefs.h" | 30 #include "webrtc/typedefs.h" |
30 | 31 |
31 namespace webrtc { | 32 namespace webrtc { |
32 | 33 |
33 // Forward declarations. | 34 // Forward declarations. |
34 class Accelerate; | 35 class Accelerate; |
35 class BackgroundNoise; | 36 class BackgroundNoise; |
36 class BufferLevelFilter; | 37 class BufferLevelFilter; |
37 class ComfortNoise; | 38 class ComfortNoise; |
38 class DecisionLogic; | 39 class DecisionLogic; |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 AudioFrame::kVadPassive; | 412 AudioFrame::kVadPassive; |
412 std::unique_ptr<TickTimer::Stopwatch> generated_noise_stopwatch_ | 413 std::unique_ptr<TickTimer::Stopwatch> generated_noise_stopwatch_ |
413 GUARDED_BY(crit_sect_); | 414 GUARDED_BY(crit_sect_); |
414 | 415 |
415 private: | 416 private: |
416 RTC_DISALLOW_COPY_AND_ASSIGN(NetEqImpl); | 417 RTC_DISALLOW_COPY_AND_ASSIGN(NetEqImpl); |
417 }; | 418 }; |
418 | 419 |
419 } // namespace webrtc | 420 } // namespace webrtc |
420 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ | 421 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ |
OLD | NEW |