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.java51 ImsStreamMediaProfile mMediaProfile; field in ImsPhoneCallTest
62 mMediaProfile = new ImsStreamMediaProfile(); in setUp()
132 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackTone()
133 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackTone()
149 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testUpdateRingBackToneBetweenStateChange()
150 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackToneBetweenStateChange()
158 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackToneBetweenStateChange()
174 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testUpdateRingBackToneBetweenStateChangeTwo()
175 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackToneBetweenStateChangeTwo()
183 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackToneBetweenStateChangeTwo()
[all …]
DImsPhoneCallTrackerTest.java945 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testNoRemoteHoldtone()
971 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testRemoteToneInactive()
996 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testRemoteHoldtone()
1197 mSecondImsCall.getCallProfile().mMediaProfile = new ImsStreamMediaProfile(); in testEndRingbackOnSrvcc()
1198 mSecondImsCall.getCallProfile().mMediaProfile.mAudioDirection = in testEndRingbackOnSrvcc()
DImsPhoneConnectionTest.java453 profile.mMediaProfile = mediaProfile; in testReportMediaCodecChange()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java594 public ImsStreamMediaProfile mMediaProfile; field in ImsCallProfile
609 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
635 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
664 mMediaProfile = mediaProfile; in ImsCallProfile()
772 mMediaProfile = profile.mMediaProfile; in updateMediaProfile()
804 + ", mediaProfile=" + (mMediaProfile != null ? mMediaProfile.toString() : "null") in toString()
827 out.writeParcelable(mMediaProfile, 0); in writeToParcel()
842 mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader()); in readFromParcel()
906 return mMediaProfile; in getMediaProfile()
1032 return mMediaProfile.mVideoDirection == ImsStreamMediaProfile.DIRECTION_INACTIVE; in isVideoPaused()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java1031 if (negotiatedCallProfile.mMediaProfile != null) { in updateMediaCapabilities()
1032 mIsRttEnabledForCall = negotiatedCallProfile.mMediaProfile.isRttCall(); in updateMediaCapabilities()
1099 && localCallProfile.mMediaProfile.mAudioQuality != mAudioCodec) { in updateMediaCapabilities()
1100 mAudioCodec = localCallProfile.mMediaProfile.mAudioQuality; in updateMediaCapabilities()
1108 && localCallProfile.mMediaProfile.getAudioCodecAttributes() != null) { in updateMediaCapabilities()
1110 localCallProfile.mMediaProfile.getAudioCodecAttributes(); in updateMediaCapabilities()
1385 || localCallProfile.mMediaProfile == null) { in getAudioQualityFromCallProfile()
1389 final boolean isEvsCodecHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1391 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1393 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
[all …]
DImsPhoneCall.java332 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
336 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
DImsPhoneCallTracker.java1671 profile.mMediaProfile.mRttMode = ImsStreamMediaProfile.RTT_MODE_FULL; in dialInternal()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1767 if (!mCallProfile.mMediaProfile.isRttCall()) { in sendRttMessage()
1786 if (rttOn && mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1789 } else if (!rttOn && !mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1798 requestedProfile.mMediaProfile.setRttMode(rttOn in sendRttModifyRequest()
1819 if (mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyResponse()
1910 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createHoldMediaProfile()
1911 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createHoldMediaProfile()
1928 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createResumeMediaProfile()
1929 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createResumeMediaProfile()
2496 mCallProfile.mMediaProfile.copyFrom(profile); in callSessionProgressing()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2860 int codec = convertImsCodec(localCallProfile.mMediaProfile.mAudioQuality); in writeAudioCodecIms()