Merge "Revert "API review changes Test: make Bug: b/143307441"" into rvc-dev am: d0b255218b am: c14d301654

Change-Id: I1c9c3b180132c06b11ea06ebf23be1ec6ec7c424
This commit is contained in:
Radhika Agrawal
2020-03-19 00:27:23 +00:00
committed by Automerger Merge Worker
3 changed files with 6 additions and 6 deletions

View File

@@ -10702,8 +10702,8 @@ package android.telephony {
method public int getNumRtpPacketsTransmitted(); method public int getNumRtpPacketsTransmitted();
method public int getNumRtpPacketsTransmittedLost(); method public int getNumRtpPacketsTransmittedLost();
method public int getUplinkCallQualityLevel(); method public int getUplinkCallQualityLevel();
method public boolean isIncomingSilenceDetectedAtCallSetup(); method public boolean isIncomingSilenceDetected();
method public boolean isOutgoingSilenceDetectedAtCallSetup(); method public boolean isOutgoingSilenceDetected();
method public boolean isRtpInactivityDetected(); method public boolean isRtpInactivityDetected();
method public void writeToParcel(android.os.Parcel, int); method public void writeToParcel(android.os.Parcel, int);
field public static final int CALL_QUALITY_BAD = 4; // 0x4 field public static final int CALL_QUALITY_BAD = 4; // 0x4

View File

@@ -3627,8 +3627,8 @@ package android.telephony {
method public int getNumRtpPacketsTransmitted(); method public int getNumRtpPacketsTransmitted();
method public int getNumRtpPacketsTransmittedLost(); method public int getNumRtpPacketsTransmittedLost();
method public int getUplinkCallQualityLevel(); method public int getUplinkCallQualityLevel();
method public boolean isIncomingSilenceDetectedAtCallSetup(); method public boolean isIncomingSilenceDetected();
method public boolean isOutgoingSilenceDetectedAtCallSetup(); method public boolean isOutgoingSilenceDetected();
method public boolean isRtpInactivityDetected(); method public boolean isRtpInactivityDetected();
method public void writeToParcel(android.os.Parcel, int); method public void writeToParcel(android.os.Parcel, int);
field public static final int CALL_QUALITY_BAD = 4; // 0x4 field public static final int CALL_QUALITY_BAD = 4; // 0x4

View File

@@ -287,7 +287,7 @@ public final class CallQuality implements Parcelable {
* Returns true if only silence rtp packets are received for a duration of 20 seconds starting * Returns true if only silence rtp packets are received for a duration of 20 seconds starting
* at call setup * at call setup
*/ */
public boolean isIncomingSilenceDetectedAtCallSetup() { public boolean isIncomingSilenceDetected() {
return mRxSilenceDetected; return mRxSilenceDetected;
} }
@@ -295,7 +295,7 @@ public final class CallQuality implements Parcelable {
* Returns true if only silence rtp packets are sent for a duration of 20 seconds starting at * Returns true if only silence rtp packets are sent for a duration of 20 seconds starting at
* call setup * call setup
*/ */
public boolean isOutgoingSilenceDetectedAtCallSetup() { public boolean isOutgoingSilenceDetected() {
return mTxSilenceDetected; return mTxSilenceDetected;
} }