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

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

Issue 2546493002: Update smoothed bitrate. (Closed)
Patch Set: Fix thread safety problem and changed smoothing filter. Created 4 years 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 const ChannelProxy& send_channel_proxy) { 242 const ChannelProxy& send_channel_proxy) {
243 RTC_DCHECK(thread_checker_.CalledOnValidThread()); 243 RTC_DCHECK(thread_checker_.CalledOnValidThread());
244 channel()->set_associate_send_channel(send_channel_proxy.channel_owner_); 244 channel()->set_associate_send_channel(send_channel_proxy.channel_owner_);
245 } 245 }
246 246
247 void ChannelProxy::DisassociateSendChannel() { 247 void ChannelProxy::DisassociateSendChannel() {
248 RTC_DCHECK(thread_checker_.CalledOnValidThread()); 248 RTC_DCHECK(thread_checker_.CalledOnValidThread());
249 channel()->set_associate_send_channel(ChannelOwner(nullptr)); 249 channel()->set_associate_send_channel(ChannelOwner(nullptr));
250 } 250 }
251 251
252 void ChannelProxy::AdaptCodec() {
253 // May be called on either worker thread or network thread.
254 channel()->AdaptCodec();
255 }
256
252 Channel* ChannelProxy::channel() const { 257 Channel* ChannelProxy::channel() const {
253 RTC_DCHECK(channel_owner_.channel()); 258 RTC_DCHECK(channel_owner_.channel());
254 return channel_owner_.channel(); 259 return channel_owner_.channel();
255 } 260 }
256 261
257 } // namespace voe 262 } // namespace voe
258 } // namespace webrtc 263 } // namespace webrtc
OLDNEW
« webrtc/common_audio/smoothing_filter.cc ('K') | « webrtc/voice_engine/channel_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698