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

Side by Side Diff: webrtc/voice_engine/test/auto_test/fakes/conference_transport.h

Issue 2961723004: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: Moved creation of APMs from CreateVoiceEngines Created 3 years, 5 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 std::map<unsigned int, std::pair<int, int>> streams_ GUARDED_BY(stream_crit_); 140 std::map<unsigned int, std::pair<int, int>> streams_ GUARDED_BY(stream_crit_);
141 std::deque<Packet> packet_queue_ GUARDED_BY(pq_crit_); 141 std::deque<Packet> packet_queue_ GUARDED_BY(pq_crit_);
142 142
143 int local_sender_; // Channel Id of local sender 143 int local_sender_; // Channel Id of local sender
144 int reflector_; 144 int reflector_;
145 145
146 webrtc::VoiceEngine* local_voe_; 146 webrtc::VoiceEngine* local_voe_;
147 webrtc::VoEBase* local_base_; 147 webrtc::VoEBase* local_base_;
148 webrtc::VoERTP_RTCP* local_rtp_rtcp_; 148 webrtc::VoERTP_RTCP* local_rtp_rtcp_;
149 webrtc::VoENetwork* local_network_; 149 webrtc::VoENetwork* local_network_;
150 rtc::scoped_refptr<webrtc::AudioProcessing> local_apm_;
150 151
151 webrtc::VoiceEngine* remote_voe_; 152 webrtc::VoiceEngine* remote_voe_;
152 webrtc::VoEBase* remote_base_; 153 webrtc::VoEBase* remote_base_;
153 webrtc::VoECodec* remote_codec_; 154 webrtc::VoECodec* remote_codec_;
154 webrtc::VoERTP_RTCP* remote_rtp_rtcp_; 155 webrtc::VoERTP_RTCP* remote_rtp_rtcp_;
155 webrtc::VoENetwork* remote_network_; 156 webrtc::VoENetwork* remote_network_;
156 webrtc::VoEFile* remote_file_; 157 webrtc::VoEFile* remote_file_;
157 158 rtc::scoped_refptr<webrtc::AudioProcessing> remote_apm_;
158 LoudestFilter loudest_filter_; 159 LoudestFilter loudest_filter_;
159 160
160 const std::unique_ptr<webrtc::RtpHeaderParser> rtp_header_parser_; 161 const std::unique_ptr<webrtc::RtpHeaderParser> rtp_header_parser_;
161 }; 162 };
162 163
163 } // namespace voetest 164 } // namespace voetest
164 } // namespace webrtc 165 } // namespace webrtc
165 166
166 #endif // WEBRTC_VOICE_ENGINE_TEST_AUTO_TEST_FAKES_CONFERENCE_TRANSPORT_H_ 167 #endif // WEBRTC_VOICE_ENGINE_TEST_AUTO_TEST_FAKES_CONFERENCE_TRANSPORT_H_
OLDNEW
« no previous file with comments | « webrtc/voice_engine/shared_data.cc ('k') | webrtc/voice_engine/test/auto_test/fakes/conference_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698