Home
last modified time | relevance | path

Searched refs:mMediaProfile (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTest.java53 ImsStreamMediaProfile mMediaProfile; field in ImsPhoneCallTest
66 mMediaProfile = new ImsStreamMediaProfile(); in setUp()
72 mMediaProfile = null; in tearDown()
137 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackTone()
138 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackTone()
154 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testUpdateRingBackToneBetweenStateChange()
155 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackToneBetweenStateChange()
163 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackToneBetweenStateChange()
179 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testUpdateRingBackToneBetweenStateChangeTwo()
180 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackToneBetweenStateChangeTwo()
[all …]
DImsPhoneCallTrackerTest.java1501 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testNoRemoteHoldtone()
1566 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testRemoteToneInactive()
1591 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testRemoteHoldtone()
1804 mSecondImsCall.getCallProfile().mMediaProfile = new ImsStreamMediaProfile(); in testEndRingbackOnSrvcc()
1805 mSecondImsCall.getCallProfile().mMediaProfile.mAudioDirection = in testEndRingbackOnSrvcc()
DImsPhoneConnectionTest.java554 profile.mMediaProfile = mediaProfile; in testReportMediaCodecChange()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java613 public ImsStreamMediaProfile mMediaProfile; field in ImsCallProfile
628 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
654 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
683 mMediaProfile = mediaProfile; in ImsCallProfile()
791 mMediaProfile = profile.mMediaProfile; in updateMediaProfile()
823 + ", mediaProfile=" + (mMediaProfile != null ? mMediaProfile.toString() : "null") in toString()
846 out.writeParcelable(mMediaProfile, 0); in writeToParcel()
861mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader(), android.telephony.… in readFromParcel()
926 return mMediaProfile; in getMediaProfile()
1056 return mMediaProfile.mVideoDirection == ImsStreamMediaProfile.DIRECTION_INACTIVE; in isVideoPaused()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java1060 if (negotiatedCallProfile.mMediaProfile != null) { in updateMediaCapabilities()
1061 mIsRttEnabledForCall = negotiatedCallProfile.mMediaProfile.isRttCall(); in updateMediaCapabilities()
1128 && localCallProfile.mMediaProfile.mAudioQuality != mAudioCodec) { in updateMediaCapabilities()
1129 mAudioCodec = localCallProfile.mMediaProfile.mAudioQuality; in updateMediaCapabilities()
1137 && localCallProfile.mMediaProfile.getAudioCodecAttributes() != null) { in updateMediaCapabilities()
1139 localCallProfile.mMediaProfile.getAudioCodecAttributes(); in updateMediaCapabilities()
1521 || localCallProfile.mMediaProfile == null) { in getAudioQualityFromCallProfile()
1525 final boolean isEvsCodecHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1527 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1529 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
[all …]
DImsPhoneCall.java369 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
373 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
DImsPhoneCallTracker.java2147 profile.mMediaProfile.mRttMode = ImsStreamMediaProfile.RTT_MODE_FULL; in dialInternal()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1798 if (mCallProfile == null || mCallProfile.mMediaProfile == null) { in sendRttMessage()
1802 if (!mCallProfile.mMediaProfile.isRttCall()) { in sendRttMessage()
1822 if (mCallProfile == null || mCallProfile.mMediaProfile == null) { in sendRttModifyRequest()
1826 if (rttOn && mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1829 } else if (!rttOn && !mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1838 requestedProfile.mMediaProfile.setRttMode(rttOn in sendRttModifyRequest()
1860 if (mCallProfile == null || mCallProfile.mMediaProfile == null) { in sendRttModifyResponse()
1864 if (mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyResponse()
1955 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createHoldMediaProfile()
1956 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createHoldMediaProfile()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2869 int codec = convertImsCodec(localCallProfile.mMediaProfile.mAudioQuality); in writeAudioCodecIms()