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

Side by Side Diff: webrtc/voice_engine/channel_proxy.cc

Issue 2461523002: Remove usage of VoEBase::AssociateSendChannel() from WVoMC. (Closed)
Patch Set: rebase Created 4 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/voice_engine/channel_proxy.h ('k') | no next file » | 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) 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 229
230 int ChannelProxy::NeededFrequency() const { 230 int ChannelProxy::NeededFrequency() const {
231 return static_cast<int>(channel()->NeededFrequency(-1)); 231 return static_cast<int>(channel()->NeededFrequency(-1));
232 } 232 }
233 233
234 void ChannelProxy::SetTransportOverhead(int transport_overhead_per_packet) { 234 void ChannelProxy::SetTransportOverhead(int transport_overhead_per_packet) {
235 RTC_DCHECK(thread_checker_.CalledOnValidThread()); 235 RTC_DCHECK(thread_checker_.CalledOnValidThread());
236 channel()->SetTransportOverhead(transport_overhead_per_packet); 236 channel()->SetTransportOverhead(transport_overhead_per_packet);
237 } 237 }
238 238
239 void ChannelProxy::AssociateSendChannel(
240 const ChannelProxy& send_channel_proxy) {
241 RTC_DCHECK(thread_checker_.CalledOnValidThread());
242 channel()->set_associate_send_channel(send_channel_proxy.channel_owner_);
243 }
244
245 void ChannelProxy::DisassociateSendChannel() {
246 RTC_DCHECK(thread_checker_.CalledOnValidThread());
247 channel()->set_associate_send_channel(ChannelOwner(nullptr));
248 }
249
239 Channel* ChannelProxy::channel() const { 250 Channel* ChannelProxy::channel() const {
240 RTC_DCHECK(channel_owner_.channel()); 251 RTC_DCHECK(channel_owner_.channel());
241 return channel_owner_.channel(); 252 return channel_owner_.channel();
242 } 253 }
243 254
244 } // namespace voe 255 } // namespace voe
245 } // namespace webrtc 256 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/voice_engine/channel_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698