Index: webrtc/api/peerconnectionfactory.cc |
diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc |
index ff8098cd57a277235a9cd72e01823503c740efda..6f443ae65c64f0b39bd0fcdcf9a0c05915363be7 100644 |
--- a/webrtc/api/peerconnectionfactory.cc |
+++ b/webrtc/api/peerconnectionfactory.cc |
@@ -172,8 +172,9 @@ bool PeerConnectionFactory::Initialize() { |
worker_thread_->Invoke<cricket::MediaEngineInterface*>(rtc::Bind( |
&PeerConnectionFactory::CreateMediaEngine_w, this)); |
- channel_manager_.reset( |
- new cricket::ChannelManager(media_engine, worker_thread_)); |
+ rtc::Thread* const network_thread = worker_thread_; |
+ channel_manager_.reset(new cricket::ChannelManager( |
+ media_engine, worker_thread_, network_thread)); |
channel_manager_->SetVideoRtxEnabled(true); |
if (!channel_manager_->Init()) { |