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