Searched defs:newVideoState (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java569 * @param newVideoState The new video state.
571 public void onVideoStateChanged(int newVideoState) { argument
572 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) {
574 Log.i(this, "onVideoStateChanged: currentVideoState=%s, newVideoState=%s, "
577 VideoProfile.videoStateToString(newVideoState));
580 Log.d(this, "onVideoStateChanged: currentVideoState=%s, newVideoState=%s",
582 VideoProfile.videoStateToString(newVideoState));
584 mCurrentVideoState = newVideoState;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java867 int newVideoState = ImsCallProfile
870 if (oldVideoState != newVideoState) {
878 !VideoProfile.isPaused(newVideoState)) {
886 updateVideoState(newVideoState);
894 VideoProfile.isPaused(newVideoState)) {
968 private void updateVideoState(int newVideoState) { argument
970 mImsVideoCallProviderWrapper.onVideoStateChanged(newVideoState);
972 setVideoState(newVideoState);
1218 int newVideoState = responseProfile.getVideoState();
1226 int changedBits = currentVideoState ^ newVideoState;
[all...]
H A DImsPhoneCallTracker.java3542 * @param newVideoState New video state. (Refer to VideoProfile)
3544 private void modifyVideoCall(ImsCall imsCall, int newVideoState) { argument
3550 new VideoProfile(oldVideoState), new VideoProfile(newVideoState));

Completed in 737 milliseconds