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.java889 int newVideoState = ImsCallProfile in updateMediaCapabilities() local
892 if (oldVideoState != newVideoState) { in updateMediaCapabilities()
900 !VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
908 updateVideoState(newVideoState); in updateMediaCapabilities()
916 VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
1006 private void updateVideoState(int newVideoState) { in updateVideoState() argument
1008 mImsVideoCallProviderWrapper.onVideoStateChanged(newVideoState); in updateVideoState()
1010 setVideoState(newVideoState); in updateVideoState()
1288 int newVideoState = responseProfile.getVideoState(); in onReceiveSessionModifyResponse() local
1296 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.java3869 private void modifyVideoCall(ImsCall imsCall, int newVideoState) { in modifyVideoCall() argument
3875 new VideoProfile(oldVideoState), new VideoProfile(newVideoState)); in modifyVideoCall()
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DImsVideoCallProviderWrapper.java571 public void onVideoStateChanged(int newVideoState) { in onVideoStateChanged() argument
572 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) { in onVideoStateChanged()
577 VideoProfile.videoStateToString(newVideoState)); in onVideoStateChanged()
582 VideoProfile.videoStateToString(newVideoState)); in onVideoStateChanged()
584 mCurrentVideoState = newVideoState; in onVideoStateChanged()