Revert "API review changes Test: make Bug: b/143307441"
Revert "API review comments Test: make Bug: b/143307441" Revert submission 10738364-CallQualityAPI Reason for revert: rvc build breakage Reverted Changes: I51b4d5699:API review comments Test: make Bug: b/143307441 I53ebc76da:API review changes Test: make Bug: b/143307441 Change-Id: I62b7a516a4c5f3a950906c17700ba13b5906ba6a
This commit is contained in:
@@ -10754,8 +10754,8 @@ package android.telephony {
|
||||
method public int getNumRtpPacketsTransmitted();
|
||||
method public int getNumRtpPacketsTransmittedLost();
|
||||
method public int getUplinkCallQualityLevel();
|
||||
method public boolean isIncomingSilenceDetectedAtCallSetup();
|
||||
method public boolean isOutgoingSilenceDetectedAtCallSetup();
|
||||
method public boolean isIncomingSilenceDetected();
|
||||
method public boolean isOutgoingSilenceDetected();
|
||||
method public boolean isRtpInactivityDetected();
|
||||
method public void writeToParcel(android.os.Parcel, int);
|
||||
field public static final int CALL_QUALITY_BAD = 4; // 0x4
|
||||
|
||||
@@ -3628,8 +3628,8 @@ package android.telephony {
|
||||
method public int getNumRtpPacketsTransmitted();
|
||||
method public int getNumRtpPacketsTransmittedLost();
|
||||
method public int getUplinkCallQualityLevel();
|
||||
method public boolean isIncomingSilenceDetectedAtCallSetup();
|
||||
method public boolean isOutgoingSilenceDetectedAtCallSetup();
|
||||
method public boolean isIncomingSilenceDetected();
|
||||
method public boolean isOutgoingSilenceDetected();
|
||||
method public boolean isRtpInactivityDetected();
|
||||
method public void writeToParcel(android.os.Parcel, int);
|
||||
field public static final int CALL_QUALITY_BAD = 4; // 0x4
|
||||
|
||||
@@ -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
|
||||
* at call setup
|
||||
*/
|
||||
public boolean isIncomingSilenceDetectedAtCallSetup() {
|
||||
public boolean isIncomingSilenceDetected() {
|
||||
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
|
||||
* call setup
|
||||
*/
|
||||
public boolean isOutgoingSilenceDetectedAtCallSetup() {
|
||||
public boolean isOutgoingSilenceDetected() {
|
||||
return mTxSilenceDetected;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user