Java Code Examples for org.webrtc.VideoTrack#enabled()

The following examples show how to use org.webrtc.VideoTrack#enabled() . 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: WebRTCWrapper.java    From Pix-Art-Messenger with GNU General Public License v3.0 5 votes vote down vote up
boolean isVideoEnabled() {
    final VideoTrack videoTrack = this.localVideoTrack;
    if (videoTrack == null) {
        throw new IllegalStateException("Local video track does not exist");
    }
    return videoTrack.enabled();
}
 
Example 2
Source File: WebRTCWrapper.java    From Conversations with GNU General Public License v3.0 5 votes vote down vote up
boolean isVideoEnabled() {
    final VideoTrack videoTrack = this.localVideoTrack;
    if (videoTrack == null) {
        throw new IllegalStateException("Local video track does not exist");
    }
    return videoTrack.enabled();
}