Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: webrtc/modules/audio_coding/neteq/neteq_impl.cc

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix last incorrectly wrapped pragma message Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/audio_coding/neteq/nack.cc ('k') | webrtc/modules/audio_coding/neteq/packet.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/nack.cc ('k') | webrtc/modules/audio_coding/neteq/packet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698