| 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 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "webrtc/modules/audio_coding/neteq/merge.h" | 35 #include "webrtc/modules/audio_coding/neteq/merge.h" |
| 36 #include "webrtc/modules/audio_coding/neteq/normal.h" | 36 #include "webrtc/modules/audio_coding/neteq/normal.h" |
| 37 #include "webrtc/modules/audio_coding/neteq/packet_buffer.h" | 37 #include "webrtc/modules/audio_coding/neteq/packet_buffer.h" |
| 38 #include "webrtc/modules/audio_coding/neteq/packet.h" | 38 #include "webrtc/modules/audio_coding/neteq/packet.h" |
| 39 #include "webrtc/modules/audio_coding/neteq/payload_splitter.h" | 39 #include "webrtc/modules/audio_coding/neteq/payload_splitter.h" |
| 40 #include "webrtc/modules/audio_coding/neteq/post_decode_vad.h" | 40 #include "webrtc/modules/audio_coding/neteq/post_decode_vad.h" |
| 41 #include "webrtc/modules/audio_coding/neteq/preemptive_expand.h" | 41 #include "webrtc/modules/audio_coding/neteq/preemptive_expand.h" |
| 42 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" | 42 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" |
| 43 #include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h" | 43 #include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h" |
| 44 #include "webrtc/modules/interface/module_common_types.h" | 44 #include "webrtc/modules/interface/module_common_types.h" |
| 45 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" | 45 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 46 | 46 |
| 47 // Modify the code to obtain backwards bit-exactness. Once bit-exactness is no | 47 // Modify the code to obtain backwards bit-exactness. Once bit-exactness is no |
| 48 // longer required, this #define should be removed (and the code that it | 48 // longer required, this #define should be removed (and the code that it |
| 49 // enables). | 49 // enables). |
| 50 #define LEGACY_BITEXACT | 50 #define LEGACY_BITEXACT |
| 51 | 51 |
| 52 namespace webrtc { | 52 namespace webrtc { |
| 53 | 53 |
| 54 NetEqImpl::NetEqImpl(const NetEq::Config& config, | 54 NetEqImpl::NetEqImpl(const NetEq::Config& config, |
| 55 BufferLevelFilter* buffer_level_filter, | 55 BufferLevelFilter* buffer_level_filter, |
| (...skipping 1970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2026 | 2026 |
| 2027 void NetEqImpl::CreateDecisionLogic() { | 2027 void NetEqImpl::CreateDecisionLogic() { |
| 2028 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_, | 2028 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_, |
| 2029 playout_mode_, | 2029 playout_mode_, |
| 2030 decoder_database_.get(), | 2030 decoder_database_.get(), |
| 2031 *packet_buffer_.get(), | 2031 *packet_buffer_.get(), |
| 2032 delay_manager_.get(), | 2032 delay_manager_.get(), |
| 2033 buffer_level_filter_.get())); | 2033 buffer_level_filter_.get())); |
| 2034 } | 2034 } |
| 2035 } // namespace webrtc | 2035 } // namespace webrtc |
| OLD | NEW |