Package | Description |
---|---|
org.webrtc |
Modifier and Type | Method and Description |
---|---|
MediaStream |
PeerConnectionFactory.createLocalMediaStream(java.lang.String label) |
Modifier and Type | Method and Description |
---|---|
boolean |
PeerConnection.addStream(MediaStream stream)
Adds a new MediaStream to be sent on this peer connection.
|
void |
PeerConnection.Observer.onAddStream(MediaStream stream)
Triggered when media is received on a new stream from remote peer.
|
void |
PeerConnection.Observer.onAddTrack(RtpReceiver receiver,
MediaStream[] mediaStreams)
Triggered when a new track is signaled by the remote peer, as a result of
setRemoteDescription.
|
void |
PeerConnection.Observer.onRemoveStream(MediaStream stream)
Triggered when a remote peer close a stream.
|
void |
PeerConnection.removeStream(MediaStream stream)
Removes the given media stream from this peer connection.
|