OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 } | 279 } |
280 | 280 |
281 rtc::scoped_refptr<AudioTrackInterface> | 281 rtc::scoped_refptr<AudioTrackInterface> |
282 PeerConnectionFactory::CreateAudioTrack(const std::string& id, | 282 PeerConnectionFactory::CreateAudioTrack(const std::string& id, |
283 AudioSourceInterface* source) { | 283 AudioSourceInterface* source) { |
284 RTC_DCHECK(signaling_thread_->IsCurrent()); | 284 RTC_DCHECK(signaling_thread_->IsCurrent()); |
285 rtc::scoped_refptr<AudioTrackInterface> track(AudioTrack::Create(id, source)); | 285 rtc::scoped_refptr<AudioTrackInterface> track(AudioTrack::Create(id, source)); |
286 return AudioTrackProxy::Create(signaling_thread_, track); | 286 return AudioTrackProxy::Create(signaling_thread_, track); |
287 } | 287 } |
288 | 288 |
289 webrtc::MediaControllerInterface* PeerConnectionFactory::CreateMediaController() | 289 webrtc::MediaControllerInterface* PeerConnectionFactory::CreateMediaController( |
| 290 const cricket::MediaConfig& config) |
290 const { | 291 const { |
291 RTC_DCHECK(signaling_thread_->IsCurrent()); | 292 RTC_DCHECK(signaling_thread_->IsCurrent()); |
292 return MediaControllerInterface::Create(worker_thread_, | 293 return MediaControllerInterface::Create(config, worker_thread_, |
293 channel_manager_.get()); | 294 channel_manager_.get()); |
294 } | 295 } |
295 | 296 |
296 rtc::Thread* PeerConnectionFactory::signaling_thread() { | 297 rtc::Thread* PeerConnectionFactory::signaling_thread() { |
297 // This method can be called on a different thread when the factory is | 298 // This method can be called on a different thread when the factory is |
298 // created in CreatePeerConnectionFactory(). | 299 // created in CreatePeerConnectionFactory(). |
299 return signaling_thread_; | 300 return signaling_thread_; |
300 } | 301 } |
301 | 302 |
302 rtc::Thread* PeerConnectionFactory::worker_thread() { | 303 rtc::Thread* PeerConnectionFactory::worker_thread() { |
303 RTC_DCHECK(signaling_thread_->IsCurrent()); | 304 RTC_DCHECK(signaling_thread_->IsCurrent()); |
304 return worker_thread_; | 305 return worker_thread_; |
305 } | 306 } |
306 | 307 |
307 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() { | 308 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() { |
308 ASSERT(worker_thread_ == rtc::Thread::Current()); | 309 ASSERT(worker_thread_ == rtc::Thread::Current()); |
309 return cricket::WebRtcMediaEngineFactory::Create( | 310 return cricket::WebRtcMediaEngineFactory::Create( |
310 default_adm_.get(), video_encoder_factory_.get(), | 311 default_adm_.get(), video_encoder_factory_.get(), |
311 video_decoder_factory_.get()); | 312 video_decoder_factory_.get()); |
312 } | 313 } |
313 | 314 |
314 } // namespace webrtc | 315 } // namespace webrtc |
OLD | NEW |