Loading src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java +8 −0 Original line number Diff line number Diff line Loading @@ -2735,6 +2735,14 @@ public class ImsPhoneCallTracker extends CallTracker implements ImsPullCall { } } @Override public void onRttAudioIndicatorChanged(ImsCall imsCall, ImsStreamMediaProfile profile) { ImsPhoneConnection conn = findConnection(imsCall); if (conn != null) { conn.onRttAudioIndicatorChanged(profile); } } /** * Handles a change to the multiparty state for an {@code ImsCall}. Notifies the associated * {@link ImsPhoneConnection} of the change. Loading src/java/com/android/internal/telephony/imsphone/ImsPhoneConnection.java +8 −0 Original line number Diff line number Diff line Loading @@ -1052,6 +1052,14 @@ public class ImsPhoneConnection extends Connection implements mRttTextHandler.sendToInCall(message); } public void onRttAudioIndicatorChanged(ImsStreamMediaProfile profile) { Bundle extras = new Bundle(); extras.putBoolean(android.telecom.Connection.EXTRA_IS_RTT_AUDIO_PRESENT, profile.getRttAudioSpeech()); onConnectionEvent(android.telecom.Connection.EVENT_RTT_AUDIO_INDICATION_CHANGED, extras); } public void setCurrentRttTextStream(android.telecom.Connection.RttTextStream rttTextStream) { synchronized (this) { mRttTextStream = rttTextStream; Loading Loading
src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java +8 −0 Original line number Diff line number Diff line Loading @@ -2735,6 +2735,14 @@ public class ImsPhoneCallTracker extends CallTracker implements ImsPullCall { } } @Override public void onRttAudioIndicatorChanged(ImsCall imsCall, ImsStreamMediaProfile profile) { ImsPhoneConnection conn = findConnection(imsCall); if (conn != null) { conn.onRttAudioIndicatorChanged(profile); } } /** * Handles a change to the multiparty state for an {@code ImsCall}. Notifies the associated * {@link ImsPhoneConnection} of the change. Loading
src/java/com/android/internal/telephony/imsphone/ImsPhoneConnection.java +8 −0 Original line number Diff line number Diff line Loading @@ -1052,6 +1052,14 @@ public class ImsPhoneConnection extends Connection implements mRttTextHandler.sendToInCall(message); } public void onRttAudioIndicatorChanged(ImsStreamMediaProfile profile) { Bundle extras = new Bundle(); extras.putBoolean(android.telecom.Connection.EXTRA_IS_RTT_AUDIO_PRESENT, profile.getRttAudioSpeech()); onConnectionEvent(android.telecom.Connection.EVENT_RTT_AUDIO_INDICATION_CHANGED, extras); } public void setCurrentRttTextStream(android.telecom.Connection.RttTextStream rttTextStream) { synchronized (this) { mRttTextStream = rttTextStream; Loading