HomeSort by relevance Sort by last modified time
    Searched refs:local_stream (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/content/renderer/media/
rtc_peer_connection_handler_unittest.cc 243 WebKit::WebMediaStream local_stream; local
244 local_stream.initialize(UTF8ToUTF16(stream_label), audio_tracks,
250 local_stream.audioTracks(audio_tracks);
259 local_stream.videoTracks(video_tracks);
267 local_stream.setExtraData(
269 return local_stream;
412 std::string stream_label = "local_stream";
413 WebKit::WebMediaStream local_stream(
419 testing::Ref(local_stream),
423 testing::Ref(local_stream),
    [all...]
mock_peer_connection_impl.cc 213 MediaStreamInterface* local_stream,
216 stream_label_ = local_stream->label();
217 local_streams_->AddStream(local_stream);
222 MediaStreamInterface* local_stream) {
223 DCHECK_EQ(stream_label_, local_stream->label());
225 local_streams_->RemoveStream(local_stream);
mock_peer_connection_impl.h 31 webrtc::MediaStreamInterface* local_stream,
34 webrtc::MediaStreamInterface* local_stream) OVERRIDE;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnection.h 67 virtual bool AddStream(MediaStreamInterface* local_stream,
69 virtual void RemoveStream(MediaStreamInterface* local_stream);
peerconnection.cc 338 bool PeerConnection::AddStream(MediaStreamInterface* local_stream,
344 local_stream))
348 if (!mediastream_signaling_->AddLocalStream(local_stream)) {
351 stats_.AddStream(local_stream);
356 void PeerConnection::RemoveStream(MediaStreamInterface* local_stream) {
360 mediastream_signaling_->RemoveLocalStream(local_stream);
mediastreamsignaling.cc 262 bool MediaStreamSignaling::AddLocalStream(MediaStreamInterface* local_stream) {
263 if (local_streams_->find(local_stream->label()) != NULL) {
264 LOG(LS_WARNING) << "MediaStream with label " << local_stream->label()
268 local_streams_->AddStream(local_stream);
275 AudioTrackVector audio_tracks = local_stream->GetAudioTracks();
287 VideoTrackVector video_tracks = local_stream->GetVideoTracks();
302 MediaStreamInterface* local_stream) {
303 local_streams_->RemoveStream(local_stream);
304 stream_observer_->OnRemoveLocalStream(local_stream);
    [all...]
mediastreamsignaling.h 182 // Adds |local_stream| to the collection of known MediaStreams that will be
184 bool AddLocalStream(MediaStreamInterface* local_stream);
186 // Removes |local_stream| from the collection of known MediaStreams that will
188 void RemoveLocalStream(MediaStreamInterface* local_stream);
peerconnectioninterface_unittest.cc 1185 scoped_refptr<MediaStreamInterface> local_stream = local
    [all...]
mediastreamsignaling_unittest.cc 605 MediaStreamInterface* local_stream = local_streams->at(0); local
606 EXPECT_TRUE(signaling_->AddLocalStream(local_stream));
612 local_stream->AddTrack(AudioTrack::Create(kAudioTracks[1], NULL));
    [all...]

Completed in 808 milliseconds