Home
last modified time | relevance | path

Searched refs:newVideoState (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java961 int newVideoState = ImsCallProfile in updateMediaCapabilities() local
964 if (oldVideoState != newVideoState) { in updateMediaCapabilities()
972 !VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
980 updateVideoState(newVideoState); in updateMediaCapabilities()
988 VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
1081 private void updateVideoState(int newVideoState) { in updateVideoState() argument
1083 mImsVideoCallProviderWrapper.onVideoStateChanged(newVideoState); in updateVideoState()
1085 setVideoState(newVideoState); in updateVideoState()
1388 int newVideoState = responseProfile.getVideoState(); in onReceiveSessionModifyResponse() local
1396 int changedBits = currentVideoState ^ newVideoState; in onReceiveSessionModifyResponse()
[all …]
DImsExternalCallTracker.java363 int newVideoState = ImsCallProfile.getVideoStateFromCallType(state.getCallType()); in updateExistingConnection() local
364 if (newVideoState != connection.getVideoState()) { in updateExistingConnection()
365 connection.setVideoState(newVideoState); in updateExistingConnection()
369 boolean isCallPullPermitted = isCallPullPermitted(state.isCallPullable(), newVideoState); in updateExistingConnection()
DImsPhoneCallTracker.java4472 private void modifyVideoCall(ImsCall imsCall, int newVideoState) { in modifyVideoCall() argument
4478 new VideoProfile(oldVideoState), new VideoProfile(newVideoState)); in modifyVideoCall()
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DImsVideoCallProviderWrapper.java582 public void onVideoStateChanged(int newVideoState) { in onVideoStateChanged() argument
583 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) { in onVideoStateChanged()
588 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
594 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
596 mCurrentVideoState = newVideoState; in onVideoStateChanged()