Lines Matching refs:videoState

149   private static boolean isCameraRequired(int videoState, int sessionModificationState) {  in isCameraRequired()  argument
150 return VideoProfile.isBidirectional(videoState) in isCameraRequired()
151 || VideoProfile.isTransmissionEnabled(videoState) in isCameraRequired()
164 public static boolean showIncomingVideo(int videoState, int callState) { in showIncomingVideo() argument
169 boolean isPaused = VideoProfile.isPaused(videoState); in showIncomingVideo()
177 && VideoProfile.isReceptionEnabled(videoState); in showIncomingVideo()
188 Context context, int videoState, int sessionModificationState) { in showOutgoingVideo() argument
198 return VideoProfile.isTransmissionEnabled(videoState) in showOutgoingVideo()
273 private static int toCameraDirection(int videoState) { in toCameraDirection() argument
274 return VideoProfile.isTransmissionEnabled(videoState) in toCameraDirection()
275 && !VideoProfile.isBidirectional(videoState) in toCameraDirection()
882 int videoState, in showVideoUi() argument
890 boolean showIncomingVideo = showIncomingVideo(videoState, callState); in showVideoUi()
891 boolean showOutgoingVideo = showOutgoingVideo(mContext, videoState, sessionModificationState); in showVideoUi()
901 InCallPresenter.getInstance().enableScreenTimeout(VideoProfile.isAudioOnly(videoState)); in showVideoUi()
1278 private static boolean isVideoCall(int videoState) { in isVideoCall() argument
1280 && (VideoProfile.isTransmissionEnabled(videoState) in isVideoCall()
1281 || VideoProfile.isReceptionEnabled(videoState)); in isVideoCall()