1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/media/media_stream_dependency_factory.h"
#include <vector>
#include "base/command_line.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/waitable_event.h"
#include "content/common/media/media_stream_messages.h"
#include "content/public/common/content_switches.h"
#include "content/renderer/media/media_stream_audio_processor_options.h"
#include "content/renderer/media/media_stream_audio_source.h"
#include "content/renderer/media/media_stream_track_extra_data.h"
#include "content/renderer/media/media_stream_video_source.h"
#include "content/renderer/media/media_stream_video_track.h"
#include "content/renderer/media/peer_connection_identity_service.h"
#include "content/renderer/media/rtc_media_constraints.h"
#include "content/renderer/media/rtc_peer_connection_handler.h"
#include "content/renderer/media/rtc_video_capturer.h"
#include "content/renderer/media/rtc_video_decoder_factory.h"
#include "content/renderer/media/rtc_video_encoder_factory.h"
#include "content/renderer/media/webaudio_capturer_source.h"
#include "content/renderer/media/webrtc/webrtc_local_audio_track_adapter.h"
#include "content/renderer/media/webrtc_audio_device_impl.h"
#include "content/renderer/media/webrtc_local_audio_track.h"
#include "content/renderer/media/webrtc_uma_histograms.h"
#include "content/renderer/p2p/ipc_network_manager.h"
#include "content/renderer/p2p/ipc_socket_factory.h"
#include "content/renderer/p2p/port_allocator.h"
#include "content/renderer/render_thread_impl.h"
#include "jingle/glue/thread_wrapper.h"
#include "media/filters/gpu_video_accelerator_factories.h"
#include "third_party/WebKit/public/platform/WebMediaConstraints.h"
#include "third_party/WebKit/public/platform/WebMediaStream.h"
#include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
#include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
#include "third_party/WebKit/public/platform/WebURL.h"
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebFrame.h"
#include "third_party/libjingle/source/talk/app/webrtc/mediaconstraintsinterface.h"
#if defined(USE_OPENSSL)
#include "third_party/libjingle/source/talk/base/ssladapter.h"
#else
#include "net/socket/nss_ssl_util.h"
#endif
#if defined(OS_ANDROID)
#include "media/base/android/media_codec_bridge.h"
#endif
namespace content {
// Map of corresponding media constraints and platform effects.
struct {
const char* constraint;
const media::AudioParameters::PlatformEffectsMask effect;
} const kConstraintEffectMap[] = {
{ webrtc::MediaConstraintsInterface::kEchoCancellation,
media::AudioParameters::ECHO_CANCELLER},
};
class P2PPortAllocatorFactory : public webrtc::PortAllocatorFactoryInterface {
public:
P2PPortAllocatorFactory(
P2PSocketDispatcher* socket_dispatcher,
talk_base::NetworkManager* network_manager,
talk_base::PacketSocketFactory* socket_factory,
blink::WebFrame* web_frame)
: socket_dispatcher_(socket_dispatcher),
network_manager_(network_manager),
socket_factory_(socket_factory),
web_frame_(web_frame) {
}
virtual cricket::PortAllocator* CreatePortAllocator(
const std::vector<StunConfiguration>& stun_servers,
const std::vector<TurnConfiguration>& turn_configurations) OVERRIDE {
CHECK(web_frame_);
P2PPortAllocator::Config config;
if (stun_servers.size() > 0) {
config.stun_server = stun_servers[0].server.hostname();
config.stun_server_port = stun_servers[0].server.port();
}
config.legacy_relay = false;
for (size_t i = 0; i < turn_configurations.size(); ++i) {
P2PPortAllocator::Config::RelayServerConfig relay_config;
relay_config.server_address = turn_configurations[i].server.hostname();
relay_config.port = turn_configurations[i].server.port();
relay_config.username = turn_configurations[i].username;
relay_config.password = turn_configurations[i].password;
relay_config.transport_type = turn_configurations[i].transport_type;
relay_config.secure = turn_configurations[i].secure;
config.relays.push_back(relay_config);
}
// Use first turn server as the stun server.
if (turn_configurations.size() > 0) {
config.stun_server = config.relays[0].server_address;
config.stun_server_port = config.relays[0].port;
}
return new P2PPortAllocator(
web_frame_, socket_dispatcher_.get(), network_manager_,
socket_factory_, config);
}
protected:
virtual ~P2PPortAllocatorFactory() {}
private:
scoped_refptr<P2PSocketDispatcher> socket_dispatcher_;
// |network_manager_| and |socket_factory_| are a weak references, owned by
// MediaStreamDependencyFactory.
talk_base::NetworkManager* network_manager_;
talk_base::PacketSocketFactory* socket_factory_;
// Raw ptr to the WebFrame that created the P2PPortAllocatorFactory.
blink::WebFrame* web_frame_;
};
MediaStreamDependencyFactory::MediaStreamDependencyFactory(
P2PSocketDispatcher* p2p_socket_dispatcher)
: network_manager_(NULL),
p2p_socket_dispatcher_(p2p_socket_dispatcher),
signaling_thread_(NULL),
worker_thread_(NULL),
chrome_worker_thread_("Chrome_libJingle_WorkerThread"),
aec_dump_file_(base::kInvalidPlatformFileValue) {
}
MediaStreamDependencyFactory::~MediaStreamDependencyFactory() {
CleanupPeerConnectionFactory();
if (aec_dump_file_ != base::kInvalidPlatformFileValue)
base::ClosePlatformFile(aec_dump_file_);
}
blink::WebRTCPeerConnectionHandler*
MediaStreamDependencyFactory::CreateRTCPeerConnectionHandler(
blink::WebRTCPeerConnectionHandlerClient* client) {
// Save histogram data so we can see how much PeerConnetion is used.
// The histogram counts the number of calls to the JS API
// webKitRTCPeerConnection.
UpdateWebRTCMethodCount(WEBKIT_RTC_PEER_CONNECTION);
return new RTCPeerConnectionHandler(client, this);
}
bool MediaStreamDependencyFactory::InitializeMediaStreamAudioSource(
int render_view_id,
const blink::WebMediaConstraints& audio_constraints,
MediaStreamAudioSource* source_data) {
DVLOG(1) << "InitializeMediaStreamAudioSources()";
// Do additional source initialization if the audio source is a valid
// microphone or tab audio.
RTCMediaConstraints native_audio_constraints(audio_constraints);
ApplyFixedAudioConstraints(&native_audio_constraints);
StreamDeviceInfo device_info = source_data->device_info();
RTCMediaConstraints constraints = native_audio_constraints;
// If any platform effects are available, check them against the
// constraints. Disable effects to match false constraints, but if a
// constraint is true, set the constraint to false to later disable the
// software effect.
int effects = device_info.device.input.effects;
if (effects != media::AudioParameters::NO_EFFECTS) {
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kConstraintEffectMap); ++i) {
bool value;
if (!webrtc::FindConstraint(&constraints,
kConstraintEffectMap[i].constraint, &value,
NULL) || !value) {
// If the constraint is false, or does not exist, disable the platform
// effect.
effects &= ~kConstraintEffectMap[i].effect;
DVLOG(1) << "Disabling constraint: "
<< kConstraintEffectMap[i].constraint;
} else if (effects & kConstraintEffectMap[i].effect) {
// If the constraint is true, leave the platform effect enabled, and
// set the constraint to false to later disable the software effect.
constraints.AddMandatory(kConstraintEffectMap[i].constraint,
webrtc::MediaConstraintsInterface::kValueFalse,
true);
DVLOG(1) << "Disabling platform effect: "
<< kConstraintEffectMap[i].constraint;
}
}
device_info.device.input.effects = effects;
}
scoped_refptr<WebRtcAudioCapturer> capturer(
CreateAudioCapturer(render_view_id, device_info, audio_constraints));
if (!capturer.get()) {
DLOG(WARNING) << "Failed to create the capturer for device "
<< device_info.device.id;
// TODO(xians): Don't we need to check if source_observer is observing
// something? If not, then it looks like we have a leak here.
// OTOH, if it _is_ observing something, then the callback might
// be called multiple times which is likely also a bug.
return false;
}
source_data->SetAudioCapturer(capturer);
// Creates a LocalAudioSource object which holds audio options.
// TODO(xians): The option should apply to the track instead of the source.
// TODO(perkj): Move audio constraints parsing to Chrome.
// Currently there are a few constraints that are parsed by libjingle and
// the state is set to ended if parsing fails.
scoped_refptr<webrtc::AudioSourceInterface> rtc_source(
CreateLocalAudioSource(&constraints).get());
if (rtc_source->state() != webrtc::MediaSourceInterface::kLive) {
DLOG(WARNING) << "Failed to create rtc LocalAudioSource.";
return false;
}
source_data->SetLocalAudioSource(rtc_source);
return true;
}
cricket::VideoCapturer* MediaStreamDependencyFactory::CreateVideoCapturer(
const StreamDeviceInfo& info) {
bool is_screeencast =
info.device.type == MEDIA_TAB_VIDEO_CAPTURE ||
info.device.type == MEDIA_DESKTOP_VIDEO_CAPTURE;
return new RtcVideoCapturer(info.session_id, is_screeencast);
}
void MediaStreamDependencyFactory::CreateNativeLocalMediaStream(
blink::WebMediaStream* web_stream) {
DVLOG(1) << "MediaStreamDependencyFactory::CreateNativeLocalMediaStream()";
std::string label = base::UTF16ToUTF8(web_stream->id());
scoped_refptr<webrtc::MediaStreamInterface> native_stream =
CreateLocalMediaStream(label);
MediaStreamExtraData* extra_data =
new MediaStreamExtraData(native_stream.get(), true);
web_stream->setExtraData(extra_data);
// Add audio tracks.
blink::WebVector<blink::WebMediaStreamTrack> audio_tracks;
web_stream->audioTracks(audio_tracks);
for (size_t i = 0; i < audio_tracks.size(); ++i) {
AddNativeMediaStreamTrack(*web_stream, audio_tracks[i]);
}
// Add video tracks.
blink::WebVector<blink::WebMediaStreamTrack> video_tracks;
web_stream->videoTracks(video_tracks);
for (size_t i = 0; i < video_tracks.size(); ++i) {
AddNativeMediaStreamTrack(*web_stream, video_tracks[i]);
}
}
void MediaStreamDependencyFactory::CreateNativeLocalMediaStream(
blink::WebMediaStream* web_stream,
const MediaStreamExtraData::StreamStopCallback& stream_stop) {
CreateNativeLocalMediaStream(web_stream);
MediaStreamExtraData* extra_data =
static_cast<MediaStreamExtraData*>(web_stream->extraData());
extra_data->SetLocalStreamStopCallback(stream_stop);
}
scoped_refptr<webrtc::AudioTrackInterface>
MediaStreamDependencyFactory::CreateNativeAudioMediaStreamTrack(
const blink::WebMediaStreamTrack& track) {
blink::WebMediaStreamSource source = track.source();
DCHECK_EQ(source.type(), blink::WebMediaStreamSource::TypeAudio);
MediaStreamAudioSource* source_data =
static_cast<MediaStreamAudioSource*>(source.extraData());
// In the future the constraints will belong to the track itself, but
// right now they're on the source, so we fetch them from there.
RTCMediaConstraints track_constraints(source.constraints());
// Apply default audio constraints that enable echo cancellation,
// automatic gain control, noise suppression and high-pass filter.
ApplyFixedAudioConstraints(&track_constraints);
scoped_refptr<WebAudioCapturerSource> webaudio_source;
if (!source_data) {
if (source.requiresAudioConsumer()) {
// We're adding a WebAudio MediaStream.
// Create a specific capturer for each WebAudio consumer.
webaudio_source = CreateWebAudioSource(&source, track_constraints);
source_data =
static_cast<MediaStreamAudioSource*>(source.extraData());
} else {
// TODO(perkj): Implement support for sources from
// remote MediaStreams.
NOTIMPLEMENTED();
return NULL;
}
}
return CreateLocalAudioTrack(track,
source_data->GetAudioCapturer(),
webaudio_source.get(),
source_data->local_audio_source());
}
scoped_refptr<webrtc::VideoTrackInterface>
MediaStreamDependencyFactory::CreateNativeVideoMediaStreamTrack(
const blink::WebMediaStreamTrack& track) {
DCHECK(track.extraData() == NULL);
blink::WebMediaStreamSource source = track.source();
DCHECK_EQ(source.type(), blink::WebMediaStreamSource::TypeVideo);
MediaStreamVideoSource* source_data =
static_cast<MediaStreamVideoSource*>(source.extraData());
if (!source_data) {
// TODO(perkj): Implement support for sources from
// remote MediaStreams.
NOTIMPLEMENTED();
return NULL;
}
// Create native track from the source.
scoped_refptr<webrtc::VideoTrackInterface> webrtc_track =
CreateLocalVideoTrack(track.id().utf8(), source_data->GetAdapter());
bool local_track = true;
AddNativeTrackToBlinkTrack(webrtc_track, track, local_track);
webrtc_track->set_enabled(track.isEnabled());
return webrtc_track;
}
void MediaStreamDependencyFactory::CreateNativeMediaStreamTrack(
const blink::WebMediaStreamTrack& track) {
DCHECK(!track.isNull() && !track.extraData());
DCHECK(!track.source().isNull());
switch (track.source().type()) {
case blink::WebMediaStreamSource::TypeAudio:
CreateNativeAudioMediaStreamTrack(track);
break;
case blink::WebMediaStreamSource::TypeVideo:
CreateNativeVideoMediaStreamTrack(track);
break;
}
}
bool MediaStreamDependencyFactory::AddNativeMediaStreamTrack(
const blink::WebMediaStream& stream,
const blink::WebMediaStreamTrack& track) {
webrtc::MediaStreamInterface* native_stream = GetNativeMediaStream(stream);
DCHECK(native_stream);
switch (track.source().type()) {
case blink::WebMediaStreamSource::TypeAudio: {
scoped_refptr<webrtc::AudioTrackInterface> native_audio_track;
if (!track.extraData()) {
native_audio_track = CreateNativeAudioMediaStreamTrack(track);
} else {
native_audio_track = static_cast<webrtc::AudioTrackInterface*>(
GetNativeMediaStreamTrack(track));
}
return native_audio_track.get() &&
native_stream->AddTrack(native_audio_track);
}
case blink::WebMediaStreamSource::TypeVideo: {
scoped_refptr<webrtc::VideoTrackInterface> native_video_track;
if (!track.extraData()) {
native_video_track = CreateNativeVideoMediaStreamTrack(track);
} else {
native_video_track = static_cast<webrtc::VideoTrackInterface*>(
GetNativeMediaStreamTrack(track));
}
return native_video_track.get() &&
native_stream->AddTrack(native_video_track);
}
}
return false;
}
bool MediaStreamDependencyFactory::AddNativeVideoMediaTrack(
const std::string& track_id,
blink::WebMediaStream* stream,
cricket::VideoCapturer* capturer) {
if (!stream) {
LOG(ERROR) << "AddNativeVideoMediaTrack called with null WebMediaStream.";
return false;
}
// Create native track from the source.
scoped_refptr<webrtc::VideoTrackInterface> native_track =
CreateLocalVideoTrack(track_id, capturer);
// Add the native track to native stream
webrtc::MediaStreamInterface* native_stream =
GetNativeMediaStream(*stream);
DCHECK(native_stream);
native_stream->AddTrack(native_track.get());
// Create a new webkit video track.
blink::WebMediaStreamTrack webkit_track;
blink::WebMediaStreamSource webkit_source;
blink::WebString webkit_track_id(base::UTF8ToUTF16(track_id));
blink::WebMediaStreamSource::Type type =
blink::WebMediaStreamSource::TypeVideo;
webkit_source.initialize(webkit_track_id, type, webkit_track_id);
webkit_track.initialize(webkit_track_id, webkit_source);
AddNativeTrackToBlinkTrack(native_track.get(), webkit_track, true);
// Add the track to WebMediaStream.
stream->addTrack(webkit_track);
return true;
}
bool MediaStreamDependencyFactory::RemoveNativeMediaStreamTrack(
const blink::WebMediaStream& stream,
const blink::WebMediaStreamTrack& track) {
MediaStreamExtraData* extra_data =
static_cast<MediaStreamExtraData*>(stream.extraData());
webrtc::MediaStreamInterface* native_stream = extra_data->stream().get();
DCHECK(native_stream);
std::string track_id = base::UTF16ToUTF8(track.id());
switch (track.source().type()) {
case blink::WebMediaStreamSource::TypeAudio:
return native_stream->RemoveTrack(
native_stream->FindAudioTrack(track_id));
case blink::WebMediaStreamSource::TypeVideo:
return native_stream->RemoveTrack(
native_stream->FindVideoTrack(track_id));
}
return false;
}
scoped_refptr<webrtc::VideoSourceInterface>
MediaStreamDependencyFactory::CreateVideoSource(
cricket::VideoCapturer* capturer,
const webrtc::MediaConstraintsInterface* constraints) {
scoped_refptr<webrtc::VideoSourceInterface> source =
GetPcFactory()->CreateVideoSource(capturer, constraints).get();
return source;
}
const scoped_refptr<webrtc::PeerConnectionFactoryInterface>&
MediaStreamDependencyFactory::GetPcFactory() {
if (!pc_factory_)
CreatePeerConnectionFactory();
CHECK(pc_factory_);
return pc_factory_;
}
void MediaStreamDependencyFactory::CreatePeerConnectionFactory() {
DCHECK(!pc_factory_.get());
DCHECK(!audio_device_.get());
DCHECK(!signaling_thread_);
DCHECK(!worker_thread_);
DCHECK(!network_manager_);
DCHECK(!socket_factory_);
DCHECK(!chrome_worker_thread_.IsRunning());
DVLOG(1) << "MediaStreamDependencyFactory::CreatePeerConnectionFactory()";
jingle_glue::JingleThreadWrapper::EnsureForCurrentMessageLoop();
jingle_glue::JingleThreadWrapper::current()->set_send_allowed(true);
signaling_thread_ = jingle_glue::JingleThreadWrapper::current();
CHECK(signaling_thread_);
chrome_worker_thread_.Start();
base::WaitableEvent start_worker_event(true, false);
chrome_worker_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
&MediaStreamDependencyFactory::InitializeWorkerThread,
base::Unretained(this),
&worker_thread_,
&start_worker_event));
start_worker_event.Wait();
CHECK(worker_thread_);
base::WaitableEvent create_network_manager_event(true, false);
chrome_worker_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
&MediaStreamDependencyFactory::CreateIpcNetworkManagerOnWorkerThread,
base::Unretained(this),
&create_network_manager_event));
create_network_manager_event.Wait();
socket_factory_.reset(
new IpcPacketSocketFactory(p2p_socket_dispatcher_.get()));
// Init SSL, which will be needed by PeerConnection.
#if defined(USE_OPENSSL)
if (!talk_base::InitializeSSL()) {
LOG(ERROR) << "Failed on InitializeSSL.";
NOTREACHED();
return;
}
#else
// TODO(ronghuawu): Replace this call with InitializeSSL.
net::EnsureNSSSSLInit();
#endif
scoped_ptr<cricket::WebRtcVideoDecoderFactory> decoder_factory;
scoped_ptr<cricket::WebRtcVideoEncoderFactory> encoder_factory;
const CommandLine* cmd_line = CommandLine::ForCurrentProcess();
scoped_refptr<RendererGpuVideoAcceleratorFactories> gpu_factories =
RenderThreadImpl::current()->GetGpuFactories();
if (!cmd_line->HasSwitch(switches::kDisableWebRtcHWDecoding)) {
if (gpu_factories)
decoder_factory.reset(new RTCVideoDecoderFactory(gpu_factories));
}
if (!cmd_line->HasSwitch(switches::kDisableWebRtcHWEncoding)) {
if (gpu_factories)
encoder_factory.reset(new RTCVideoEncoderFactory(gpu_factories));
}
#if defined(OS_ANDROID)
if (!media::MediaCodecBridge::IsAvailable() ||
!media::MediaCodecBridge::SupportsSetParameters()) {
encoder_factory.reset();
}
#endif
scoped_refptr<WebRtcAudioDeviceImpl> audio_device(
new WebRtcAudioDeviceImpl());
scoped_refptr<webrtc::PeerConnectionFactoryInterface> factory(
webrtc::CreatePeerConnectionFactory(worker_thread_,
signaling_thread_,
audio_device.get(),
encoder_factory.release(),
decoder_factory.release()));
CHECK(factory);
audio_device_ = audio_device;
pc_factory_ = factory;
webrtc::PeerConnectionFactoryInterface::Options factory_options;
factory_options.disable_sctp_data_channels =
cmd_line->HasSwitch(switches::kDisableSCTPDataChannels);
factory_options.disable_encryption =
cmd_line->HasSwitch(switches::kDisableWebRtcEncryption);
pc_factory_->SetOptions(factory_options);
// |aec_dump_file| will be invalid when dump is not enabled.
if (aec_dump_file_ != base::kInvalidPlatformFileValue) {
StartAecDump(aec_dump_file_);
aec_dump_file_ = base::kInvalidPlatformFileValue;
}
}
bool MediaStreamDependencyFactory::PeerConnectionFactoryCreated() {
return pc_factory_.get() != NULL;
}
scoped_refptr<webrtc::PeerConnectionInterface>
MediaStreamDependencyFactory::CreatePeerConnection(
const webrtc::PeerConnectionInterface::IceServers& ice_servers,
const webrtc::MediaConstraintsInterface* constraints,
blink::WebFrame* web_frame,
webrtc::PeerConnectionObserver* observer) {
CHECK(web_frame);
CHECK(observer);
if (!GetPcFactory())
return NULL;
scoped_refptr<P2PPortAllocatorFactory> pa_factory =
new talk_base::RefCountedObject<P2PPortAllocatorFactory>(
p2p_socket_dispatcher_.get(),
network_manager_,
socket_factory_.get(),
web_frame);
PeerConnectionIdentityService* identity_service =
new PeerConnectionIdentityService(
GURL(web_frame->document().url().spec()).GetOrigin());
return GetPcFactory()->CreatePeerConnection(ice_servers,
constraints,
pa_factory.get(),
identity_service,
observer).get();
}
scoped_refptr<webrtc::MediaStreamInterface>
MediaStreamDependencyFactory::CreateLocalMediaStream(
const std::string& label) {
return GetPcFactory()->CreateLocalMediaStream(label).get();
}
scoped_refptr<webrtc::AudioSourceInterface>
MediaStreamDependencyFactory::CreateLocalAudioSource(
const webrtc::MediaConstraintsInterface* constraints) {
scoped_refptr<webrtc::AudioSourceInterface> source =
GetPcFactory()->CreateAudioSource(constraints).get();
return source;
}
scoped_refptr<WebAudioCapturerSource>
MediaStreamDependencyFactory::CreateWebAudioSource(
blink::WebMediaStreamSource* source,
const RTCMediaConstraints& constraints) {
DVLOG(1) << "MediaStreamDependencyFactory::CreateWebAudioSource()";
DCHECK(GetWebRtcAudioDevice());
scoped_refptr<WebAudioCapturerSource>
webaudio_capturer_source(new WebAudioCapturerSource());
MediaStreamAudioSource* source_data = new MediaStreamAudioSource();
// Create a LocalAudioSource object which holds audio options.
// SetLocalAudioSource() affects core audio parts in third_party/Libjingle.
source_data->SetLocalAudioSource(CreateLocalAudioSource(&constraints).get());
source->setExtraData(source_data);
// Replace the default source with WebAudio as source instead.
source->addAudioConsumer(webaudio_capturer_source.get());
return webaudio_capturer_source;
}
scoped_refptr<webrtc::VideoTrackInterface>
MediaStreamDependencyFactory::CreateLocalVideoTrack(
const std::string& id,
webrtc::VideoSourceInterface* source) {
return GetPcFactory()->CreateVideoTrack(id, source).get();
}
scoped_refptr<webrtc::VideoTrackInterface>
MediaStreamDependencyFactory::CreateLocalVideoTrack(
const std::string& id, cricket::VideoCapturer* capturer) {
if (!capturer) {
LOG(ERROR) << "CreateLocalVideoTrack called with null VideoCapturer.";
return NULL;
}
// Create video source from the |capturer|.
scoped_refptr<webrtc::VideoSourceInterface> source =
CreateVideoSource(capturer, NULL);
// Create native track from the source.
return GetPcFactory()->CreateVideoTrack(id, source.get()).get();
}
scoped_refptr<webrtc::AudioTrackInterface>
MediaStreamDependencyFactory::CreateLocalAudioTrack(
const blink::WebMediaStreamTrack& blink_track,
const scoped_refptr<WebRtcAudioCapturer>& capturer,
WebAudioCapturerSource* webaudio_source,
webrtc::AudioSourceInterface* source) {
// Creates an adapter to hold all the libjingle objects.
scoped_refptr<WebRtcLocalAudioTrackAdapter> adapter(
WebRtcLocalAudioTrackAdapter::Create(blink_track.id().utf8(), source));
static_cast<webrtc::AudioTrackInterface*>(adapter.get())->set_enabled(
blink_track.isEnabled());
// TODO(xians): Merge |source| to the capturer(). We can't do this today
// because only one capturer() is supported while one |source| is created
// for each audio track.
scoped_ptr<WebRtcLocalAudioTrack> audio_track(
new WebRtcLocalAudioTrack(adapter, capturer, webaudio_source));
// Add the WebRtcAudioDevice as the sink to the local audio track.
// TODO(xians): Implement a PeerConnection sink adapter and remove this
// AddSink() call.
audio_track->AddSink(GetWebRtcAudioDevice());
// Start the audio track. This will hook the |audio_track| to the capturer
// as the sink of the audio, and only start the source of the capturer if
// it is the first audio track connecting to the capturer.
audio_track->Start();
// Pass the pointer of the source provider to the blink audio track.
blink::WebMediaStreamTrack writable_track = blink_track;
writable_track.setSourceProvider(audio_track->audio_source_provider());
// Pass the ownership of the native local audio track to the blink track.
writable_track.setExtraData(audio_track.release());
return adapter;
}
webrtc::SessionDescriptionInterface*
MediaStreamDependencyFactory::CreateSessionDescription(
const std::string& type,
const std::string& sdp,
webrtc::SdpParseError* error) {
return webrtc::CreateSessionDescription(type, sdp, error);
}
webrtc::IceCandidateInterface* MediaStreamDependencyFactory::CreateIceCandidate(
const std::string& sdp_mid,
int sdp_mline_index,
const std::string& sdp) {
return webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, sdp);
}
WebRtcAudioDeviceImpl*
MediaStreamDependencyFactory::GetWebRtcAudioDevice() {
return audio_device_.get();
}
void MediaStreamDependencyFactory::InitializeWorkerThread(
talk_base::Thread** thread,
base::WaitableEvent* event) {
jingle_glue::JingleThreadWrapper::EnsureForCurrentMessageLoop();
jingle_glue::JingleThreadWrapper::current()->set_send_allowed(true);
*thread = jingle_glue::JingleThreadWrapper::current();
event->Signal();
}
void MediaStreamDependencyFactory::CreateIpcNetworkManagerOnWorkerThread(
base::WaitableEvent* event) {
DCHECK_EQ(base::MessageLoop::current(), chrome_worker_thread_.message_loop());
network_manager_ = new IpcNetworkManager(p2p_socket_dispatcher_.get());
event->Signal();
}
void MediaStreamDependencyFactory::DeleteIpcNetworkManager() {
DCHECK_EQ(base::MessageLoop::current(), chrome_worker_thread_.message_loop());
delete network_manager_;
network_manager_ = NULL;
}
void MediaStreamDependencyFactory::CleanupPeerConnectionFactory() {
pc_factory_ = NULL;
if (network_manager_) {
// The network manager needs to free its resources on the thread they were
// created, which is the worked thread.
if (chrome_worker_thread_.IsRunning()) {
chrome_worker_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
&MediaStreamDependencyFactory::DeleteIpcNetworkManager,
base::Unretained(this)));
// Stopping the thread will wait until all tasks have been
// processed before returning. We wait for the above task to finish before
// letting the the function continue to avoid any potential race issues.
chrome_worker_thread_.Stop();
} else {
NOTREACHED() << "Worker thread not running.";
}
}
}
scoped_refptr<WebRtcAudioCapturer>
MediaStreamDependencyFactory::CreateAudioCapturer(
int render_view_id,
const StreamDeviceInfo& device_info,
const blink::WebMediaConstraints& constraints) {
// TODO(xians): Handle the cases when gUM is called without a proper render
// view, for example, by an extension.
DCHECK_GE(render_view_id, 0);
return WebRtcAudioCapturer::CreateCapturer(render_view_id, device_info,
constraints,
GetWebRtcAudioDevice());
}
void MediaStreamDependencyFactory::AddNativeTrackToBlinkTrack(
webrtc::MediaStreamTrackInterface* native_track,
const blink::WebMediaStreamTrack& webkit_track,
bool is_local_track) {
DCHECK(!webkit_track.isNull() && !webkit_track.extraData());
blink::WebMediaStreamTrack track = webkit_track;
if (track.source().type() == blink::WebMediaStreamSource::TypeVideo) {
track.setExtraData(new MediaStreamVideoTrack(
static_cast<webrtc::VideoTrackInterface*>(native_track),
is_local_track));
} else {
track.setExtraData(new MediaStreamTrackExtraData(native_track,
is_local_track));
}
}
webrtc::MediaStreamInterface*
MediaStreamDependencyFactory::GetNativeMediaStream(
const blink::WebMediaStream& stream) {
if (stream.isNull())
return NULL;
MediaStreamExtraData* extra_data =
static_cast<MediaStreamExtraData*>(stream.extraData());
return extra_data ? extra_data->stream().get() : NULL;
}
webrtc::MediaStreamTrackInterface*
MediaStreamDependencyFactory::GetNativeMediaStreamTrack(
const blink::WebMediaStreamTrack& track) {
if (track.isNull())
return NULL;
MediaStreamTrackExtraData* extra_data =
static_cast<MediaStreamTrackExtraData*>(track.extraData());
return extra_data ? extra_data->track().get() : NULL;
}
bool MediaStreamDependencyFactory::OnControlMessageReceived(
const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(MediaStreamDependencyFactory, message)
IPC_MESSAGE_HANDLER(MediaStreamMsg_EnableAecDump, OnAecDumpFile)
IPC_MESSAGE_HANDLER(MediaStreamMsg_DisableAecDump, OnDisableAecDump)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void MediaStreamDependencyFactory::OnAecDumpFile(
IPC::PlatformFileForTransit file_handle) {
DCHECK_EQ(aec_dump_file_, base::kInvalidPlatformFileValue);
if (PeerConnectionFactoryCreated()) {
base::PlatformFile file =
IPC::PlatformFileForTransitToPlatformFile(file_handle);
DCHECK_NE(file, base::kInvalidPlatformFileValue);
StartAecDump(file);
} else {
aec_dump_file_ = IPC::PlatformFileForTransitToPlatformFile(file_handle);
DCHECK_NE(aec_dump_file_, base::kInvalidPlatformFileValue);
}
}
void MediaStreamDependencyFactory::OnDisableAecDump() {
if (aec_dump_file_ != base::kInvalidPlatformFileValue)
base::ClosePlatformFile(aec_dump_file_);
aec_dump_file_ = base::kInvalidPlatformFileValue;
}
void MediaStreamDependencyFactory::StartAecDump(
const base::PlatformFile& aec_dump_file) {
// |pc_factory_| always takes ownership of |aec_dump_file|. If StartAecDump()
// fails, |aec_dump_file| will be closed.
if (!GetPcFactory()->StartAecDump(aec_dump_file))
VLOG(1) << "Could not start AEC dump.";
}
} // namespace content
|