diff options
author | allenwtsu <allenwtsu@google.com> | 2020-10-31 03:19:42 +0800 |
---|---|---|
committer | Allen Su <allenwtsu@google.com> | 2020-11-03 16:42:09 +0000 |
commit | 2fd9ba433d0c5ef24b278a438c0e8a164e1739f7 (patch) | |
tree | e2d0fc9eec583f99c2fc049aa824dfc913430445 /api | |
parent | 053893568a74ce32852fcced40bc531a08f66fe6 (diff) |
[IMS]Add bitrate and bandwidth into ImsStreamMediaProfile
Pipe these information for Dialer to determine HD+ icon
Bug: 169586285
Bug: 172304392
Test: build pass
Change-Id: If4149c3020230eff8da06a37a3cf4bf69c011a6d
Diffstat (limited to 'api')
-rwxr-xr-x | api/system-current.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index 0104ca25795c..0a3d67a05f1f 100755 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -11735,6 +11735,17 @@ package android.telephony.euicc { package android.telephony.ims { + public final class AudioCodecAttributes implements android.os.Parcelable { + ctor public AudioCodecAttributes(float, @NonNull android.util.Range<java.lang.Float>, float, @NonNull android.util.Range<java.lang.Float>); + method public int describeContents(); + method public float getBandwidthKhz(); + method @NonNull public android.util.Range<java.lang.Float> getBandwidthRangeKhz(); + method public float getBitrateKbps(); + method @NonNull public android.util.Range<java.lang.Float> getBitrateRangeKbps(); + method public void writeToParcel(@NonNull android.os.Parcel, int); + field @NonNull public static final android.os.Parcelable.Creator<android.telephony.ims.AudioCodecAttributes> CREATOR; + } + public final class ImsCallForwardInfo implements android.os.Parcelable { ctor public ImsCallForwardInfo(int, int, int, int, @NonNull String, int); method public int describeContents(); @@ -12103,6 +12114,7 @@ package android.telephony.ims { ctor public ImsStreamMediaProfile(int, int, int, int, int); method public void copyFrom(android.telephony.ims.ImsStreamMediaProfile); method public int describeContents(); + method @Nullable public android.telephony.ims.AudioCodecAttributes getAudioCodecAttributes(); method public int getAudioDirection(); method public int getAudioQuality(); method public int getRttMode(); @@ -12110,6 +12122,7 @@ package android.telephony.ims { method public int getVideoQuality(); method public boolean isReceivingRttAudio(); method public boolean isRttCall(); + method public void setAudioCodecAttributes(@NonNull android.telephony.ims.AudioCodecAttributes); method public void setReceivingRttAudio(boolean); method public void setRttMode(int); method public void writeToParcel(android.os.Parcel, int); |