| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |