Home
last modified time | relevance | path

Searched refs:mRtcpFbTypes (Results 1 – 4 of 4) sorted by relevance

/packages/modules/ImsMedia/framework/src/android/telephony/imsmedia/
DVideoConfig.java276 private final @RtcpFbTypes int mRtcpFbTypes; field in VideoConfig
297 mRtcpFbTypes = in.readInt(); in VideoConfig()
319 mRtcpFbTypes = builder.mRtcpFbTypes; in VideoConfig()
399 return this.mRtcpFbTypes; in getRtcpFbTypes()
426 + ", rtcpFb=" + mRtcpFbTypes in toString()
435 mPauseImagePath, mDeviceOrientationDegree, mCvoValue, mRtcpFbTypes); in hashCode()
470 && mRtcpFbTypes == s.mRtcpFbTypes); in equals()
501 dest.writeInt(mRtcpFbTypes); in writeToParcel()
538 private int mRtcpFbTypes; field in VideoConfig.Builder
704 this.mRtcpFbTypes = rtcpFbTypes; in setRtcpFbTypes()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/nodes/
DRtcpEncoderNode.cpp72 mEnableRtcpBye, mRtcpXrBlockTypes, mRtcpFbTypes); in Start()
139 mRtcpFbTypes = videoConfig->getRtcpFbType(); in SetConfig()
140 IMLOGD1("[SetConfig] rtcpFbTypes[%d]", mRtcpFbTypes); in SetConfig()
161 mRtcpFbTypes == videoConfig->getRtcpFbType()); in IsSameConfig()
254 if (mRtcpFbTypes & VideoConfig::RTP_FB_NACK) in SendNack()
295 if (type == kPsfbPli && mRtcpFbTypes & VideoConfig::PSFB_PLI) in SendPictureLost()
307 else if (type == kPsfbFir && mRtcpFbTypes & VideoConfig::PSFB_FIR) in SendPictureLost()
353 if (type == kRtpFbTmmbr && mRtcpFbTypes & VideoConfig::RTP_FB_TMMBR) in SendTmmbrn()
357 else if (type == kRtpFbTmmbn && mRtcpFbTypes & VideoConfig::RTP_FB_TMMBN) in SendTmmbrn()
/packages/modules/ImsMedia/test/app/ImsMediaTestingApp/app/src/main/java/com/example/imsmediatestingapp/
DDeviceInfo.java39 private final Set<Integer> mRtcpFbTypes; field in DeviceInfo
59 this.mRtcpFbTypes = rtcpFbTypes; in DeviceInfo()
154 return mRtcpFbTypes; in getRtcpFbTypes()
159 mRtcpFbTypes.forEach(item -> joiner.add(item.toString())); in getRtcpFbTypesToString()
191 private Set<Integer> mRtcpFbTypes = new HashSet<>(Arrays.asList(VideoConfig.RTP_FB_NONE, field in DeviceInfo.Builder
279 this.mRtcpFbTypes = rtcpFb; in setRtcpFbTypes()
288 mVideoResolutionWidth, mVideoResolutionHeight, mVideoCvoValue, mRtcpFbTypes); in build()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/nodes/
DRtcpEncoderNode.h99 int32_t mRtcpFbTypes; variable