Loading src/com/android/server/telecom/CallIntentProcessor.java +4 −0 Original line number Diff line number Diff line Loading @@ -123,6 +123,10 @@ public class CallIntentProcessor { clientExtras.putString(TelecomManager.EXTRA_CALL_SUBJECT, callsubject); } final int videoState = intent.getIntExtra( TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, VideoProfile.STATE_AUDIO_ONLY); clientExtras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, videoState); final boolean isPrivilegedDialer = intent.getBooleanExtra(KEY_IS_PRIVILEGED_DIALER, false); boolean fixedInitiatingUser = fixInitiatingUserIfNecessary(context, intent); Loading src/com/android/server/telecom/CallsManager.java +7 −0 Original line number Diff line number Diff line Loading @@ -763,6 +763,13 @@ public class CallsManager extends Call.ListenerBase isReusedCall = false; } // Set the video state on the call early so that when it is added to the InCall UI the UI // knows to configure itself as a video call immediately. if (extras != null) { call.setVideoState(extras.getInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, VideoProfile.STATE_AUDIO_ONLY)); } List<PhoneAccountHandle> accounts = mPhoneAccountRegistrar.getCallCapablePhoneAccounts(handle.getScheme(), false, initiatingUser); Loading Loading
src/com/android/server/telecom/CallIntentProcessor.java +4 −0 Original line number Diff line number Diff line Loading @@ -123,6 +123,10 @@ public class CallIntentProcessor { clientExtras.putString(TelecomManager.EXTRA_CALL_SUBJECT, callsubject); } final int videoState = intent.getIntExtra( TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, VideoProfile.STATE_AUDIO_ONLY); clientExtras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, videoState); final boolean isPrivilegedDialer = intent.getBooleanExtra(KEY_IS_PRIVILEGED_DIALER, false); boolean fixedInitiatingUser = fixInitiatingUserIfNecessary(context, intent); Loading
src/com/android/server/telecom/CallsManager.java +7 −0 Original line number Diff line number Diff line Loading @@ -763,6 +763,13 @@ public class CallsManager extends Call.ListenerBase isReusedCall = false; } // Set the video state on the call early so that when it is added to the InCall UI the UI // knows to configure itself as a video call immediately. if (extras != null) { call.setVideoState(extras.getInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, VideoProfile.STATE_AUDIO_ONLY)); } List<PhoneAccountHandle> accounts = mPhoneAccountRegistrar.getCallCapablePhoneAccounts(handle.getScheme(), false, initiatingUser); Loading