summaryrefslogtreecommitdiff
path: root/telephony/java/com/android/ims
diff options
context:
space:
mode:
authorWileen Chiu <wileenc@quicinc.com>2018-07-01 14:21:50 -0700
committerWileen Chiu <wileenc@quicinc.com>2019-01-11 11:58:31 -0800
commitf2ec298d7d60c6cb797b693558ac39cdd9a8cf52 (patch)
tree128d5faeae183539aa64bf3eb2a1b672c0600a16 /telephony/java/com/android/ims
parenta24ced9e9bff3fe4b5af9411c7e773b54f1bb093 (diff)
IMS: Propagate media profile changed message
- RTT Voice information will be passed to the UI via media profile changed message - The RTT voice information - SPEECH/SILENCE, will be conveyed via the ImsStreamMediaProfile.hasRttAudioSpeech - A connection event will be sent from frameworks to the UI - EVENT_RTT_AUDIO_INDICATION_CHANGED - Add listeners, connection event and extras to propagate media profile changed to the UI Test: Manual Bug: 110976450 Change-Id: I34d2dd612915d65f5047986dabece968c78f0abe
Diffstat (limited to 'telephony/java/com/android/ims')
-rw-r--r--telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl6
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl
index a8e8b7dd03aa..bbb27af1ba36 100644
--- a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl
+++ b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl
@@ -152,4 +152,10 @@ oneway interface IImsCallSessionListener {
* @param rttMessage Received RTT message
*/
void callSessionRttMessageReceived(in String rttMessage);
+
+ /*
+ * While in call, there has been a change in RTT audio indicator.
+ * @param profile updated ImsStreamMediaProfile
+ */
+ void callSessionRttAudioIndicatorChanged(in ImsStreamMediaProfile profile);
}