Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTest.java48 ImsStreamMediaProfile mMediaProfile; field in ImsPhoneCallTest
59 mMediaProfile = new ImsStreamMediaProfile(); in setUp()
128 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackTone()
129 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackTone()
143 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testStopRingingOnHandover()
144 mImsCallProfile.mMediaProfile = mMediaProfile; in testStopRingingOnHandover()
DImsPhoneCallTrackerTest.java766 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testNoRemoteHoldtone()
792 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testRemoteToneInactive()
817 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testRemoteHoldtone()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java389 public ImsStreamMediaProfile mMediaProfile; field in ImsCallProfile
404 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
430 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
459 mMediaProfile = mediaProfile; in ImsCallProfile()
539 mMediaProfile = profile.mMediaProfile; in updateMediaProfile()
548 + ", mediaProfile=" + mMediaProfile.toString() in toString()
567 out.writeParcelable(mMediaProfile, 0); in writeToParcel()
579 mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader()); in readFromParcel()
620 return mMediaProfile; in getMediaProfile()
746 return mMediaProfile.mVideoDirection == ImsStreamMediaProfile.DIRECTION_INACTIVE; in isVideoPaused()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java924 if (negotiatedCallProfile.mMediaProfile != null) { in updateMediaCapabilities()
925 mIsRttEnabledForCall = negotiatedCallProfile.mMediaProfile.isRttCall(); in updateMediaCapabilities()
988 && localCallProfile.mMediaProfile.mAudioQuality != mAudioCodec) { in updateMediaCapabilities()
989 mAudioCodec = localCallProfile.mMediaProfile.mAudioQuality; in updateMediaCapabilities()
1210 || localCallProfile.mMediaProfile == null) { in getAudioQualityFromCallProfile()
1214 final boolean isEvsCodecHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1216 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1218 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1221 final boolean isHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1223 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
DImsPhoneCall.java307 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
311 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
DImsPhoneCallTracker.java1079 profile.mMediaProfile.mRttMode = ImsStreamMediaProfile.RTT_MODE_FULL; in dialInternal()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1668 if (!mCallProfile.mMediaProfile.isRttCall()) { in sendRttMessage()
1687 if (rttOn && mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1690 } else if (!rttOn && !mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1699 requestedProfile.mMediaProfile.setRttMode(rttOn in sendRttModifyRequest()
1720 if (mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyResponse()
1779 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createHoldMediaProfile()
1780 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createHoldMediaProfile()
1797 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createResumeMediaProfile()
1798 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createResumeMediaProfile()
2328 mCallProfile.mMediaProfile.copyFrom(profile); in callSessionProgressing()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2628 int codec = convertImsCodec(localCallProfile.mMediaProfile.mAudioQuality); in writeAudioCodecIms()