Java Code Examples for org.webrtc.PeerConnection#IceGatheringState

The following examples show how to use org.webrtc.PeerConnection#IceGatheringState . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RespokeCall.java    From respoke-sdk-android with MIT License 5 votes vote down vote up
@Override public void onIceGatheringChange(
        PeerConnection.IceGatheringState newState) {
    if (isActive()) {
        Log.d(TAG, "ICE Gathering state: " + newState.toString());
        if (newState == PeerConnection.IceGatheringState.COMPLETE) {
            sendFinalCandidates();
        }
    }
}
 
Example 2
Source File: PeerConnectionClient.java    From restcomm-android-sdk with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
  Log.d(TAG, "IceGatheringState: " + newState);
  if (newState == PeerConnection.IceGatheringState.COMPLETE) {
    events.onIceGatheringComplete();
  }
}
 
Example 3
Source File: PeerConnectionClient.java    From sample-videoRTC with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
  Log.d(TAG, "IceGatheringState: " + newState);
}
 
Example 4
Source File: WebRTCWrapper.java    From Pix-Art-Messenger with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    Log.d(EXTENDED_LOGGING_TAG, "onIceGatheringChange(" + iceGatheringState + ")");
}
 
Example 5
Source File: NBMPeerConnection.java    From webrtcpeer-android with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    Log.d(TAG, "IceGatheringState: " + iceGatheringState);
}
 
Example 6
Source File: PnPeer.java    From AndroidRTC with MIT License 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
}
 
Example 7
Source File: PeerConnectionClient.java    From Yahala-Messenger with MIT License 4 votes vote down vote up
@Override
public void onIceGatheringChange(
        PeerConnection.IceGatheringState newState) {
    Log.d(TAG, "IceGatheringState: " + newState);
}
 
Example 8
Source File: AppRTCDemoActivity.java    From droidkit-webrtc with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override public void onIceGatheringChange(
    PeerConnection.IceGatheringState newState) {
}
 
Example 9
Source File: PeerConnectionClient.java    From janus-gateway-android with MIT License 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
  Log.d(TAG, "IceGatheringState: " + newState);
}
 
Example 10
Source File: PeerConnectionChannel.java    From owt-client-android with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
}
 
Example 11
Source File: PeerConnectionAdapter.java    From webrtc-android-tutorial with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    log("onIceGatheringChange " + iceGatheringState);
}
 
Example 12
Source File: CustomPeerConnectionObserver.java    From WebRTCapp with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    Log.d(logTag, "onIceGatheringChange() called with: iceGatheringState = [" + iceGatheringState + "]");
}
 
Example 13
Source File: WebRTCWrapper.java    From Conversations with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    Log.d(EXTENDED_LOGGING_TAG, "onIceGatheringChange(" + iceGatheringState + ")");
}
 
Example 14
Source File: PeerConnectionClient.java    From voip_android with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
    Log.d(TAG, "IceGatheringState: " + newState);
}
 
Example 15
Source File: WebRtcCallService.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
    ALog.w(TAG, "onIceGatheringChange:" + newState);

}
 
Example 16
Source File: Peer.java    From webrtc_android with MIT License 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState newState) {
    Log.i(TAG, "onIceGatheringChange:" + newState.toString());
}
 
Example 17
Source File: PnPeer.java    From android-webrtc-api with MIT License 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
}
 
Example 18
Source File: PeerConnectionAdapter.java    From webrtc-android-tutorial with Apache License 2.0 4 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
    log("onIceGatheringChange " + iceGatheringState);
}
 
Example 19
Source File: DefaultObserver.java    From Meshenger with GNU General Public License v3.0 2 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {

}
 
Example 20
Source File: MainActivity.java    From krankygeek with MIT License 2 votes vote down vote up
@Override
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {

}