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 #include "webrtc/modules/audio_coding/neteq/neteq_impl.h" | 11 #include "webrtc/modules/audio_coding/neteq/neteq_impl.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 #include <memory.h> // memset | 14 #include <memory.h> // memset |
15 | 15 |
16 #include <algorithm> | 16 #include <algorithm> |
17 | 17 |
18 #include "webrtc/base/checks.h" | 18 #include "webrtc/base/checks.h" |
19 #include "webrtc/base/logging.h" | 19 #include "webrtc/base/logging.h" |
20 #include "webrtc/base/numerics/safe_conversions.h" | 20 #include "webrtc/base/safe_conversions.h" |
21 #include "webrtc/base/trace_event.h" | 21 #include "webrtc/base/trace_event.h" |
22 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" | 22 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" |
23 #include "webrtc/modules/audio_coding/codecs/audio_decoder.h" | 23 #include "webrtc/modules/audio_coding/codecs/audio_decoder.h" |
24 #include "webrtc/modules/audio_coding/neteq/accelerate.h" | 24 #include "webrtc/modules/audio_coding/neteq/accelerate.h" |
25 #include "webrtc/modules/audio_coding/neteq/background_noise.h" | 25 #include "webrtc/modules/audio_coding/neteq/background_noise.h" |
26 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h" | 26 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h" |
27 #include "webrtc/modules/audio_coding/neteq/comfort_noise.h" | 27 #include "webrtc/modules/audio_coding/neteq/comfort_noise.h" |
28 #include "webrtc/modules/audio_coding/neteq/decision_logic.h" | 28 #include "webrtc/modules/audio_coding/neteq/decision_logic.h" |
29 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" | 29 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" |
30 #include "webrtc/modules/audio_coding/neteq/defines.h" | 30 #include "webrtc/modules/audio_coding/neteq/defines.h" |
(...skipping 2010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2041 | 2041 |
2042 void NetEqImpl::CreateDecisionLogic() { | 2042 void NetEqImpl::CreateDecisionLogic() { |
2043 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_, | 2043 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_, |
2044 playout_mode_, | 2044 playout_mode_, |
2045 decoder_database_.get(), | 2045 decoder_database_.get(), |
2046 *packet_buffer_.get(), | 2046 *packet_buffer_.get(), |
2047 delay_manager_.get(), | 2047 delay_manager_.get(), |
2048 buffer_level_filter_.get())); | 2048 buffer_level_filter_.get())); |
2049 } | 2049 } |
2050 } // namespace webrtc | 2050 } // namespace webrtc |
OLD | NEW |