Home
last modified time | relevance | path

Searched refs:uiIndex (Results 1 – 3 of 3) sorted by relevance

/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtcpConfigInfo.cpp87 eRtp_Bool RtcpConfigInfo::addRtcpSdesItem(IN tRTCP_SDES_ITEM* pstSdesItem, IN RtpDt_UInt32 uiIndex) in addRtcpSdesItem() argument
93 m_arrSdesInfo[uiIndex].ucType = pstSdesItem->ucType; in addRtcpSdesItem()
94 m_arrSdesInfo[uiIndex].ucLength = pstSdesItem->ucLength; in addRtcpSdesItem()
103 if (m_arrSdesInfo[uiIndex].pValue != nullptr) in addRtcpSdesItem()
105 delete[] m_arrSdesInfo[uiIndex].pValue; in addRtcpSdesItem()
108 m_arrSdesInfo[uiIndex].pValue = pcBuffer; in addRtcpSdesItem()
114 m_arrSdesInfo[uiIndex].uiFreq = pstSdesItem->uiFreq; in addRtcpSdesItem()
140 tRTCP_SDES_ITEM* RtcpConfigInfo::getRtcpSdesItem(IN RtpDt_UInt32 uiIndex) in getRtcpSdesItem() argument
142 if (uiIndex >= RTP_MAX_SDES_TYPE) in getRtcpSdesItem()
145 return &m_arrSdesInfo[uiIndex]; in getRtcpSdesItem()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/include/rtp/core/
DRtcpConfigInfo.h86 eRtp_Bool addRtcpSdesItem(IN tRTCP_SDES_ITEM* pstSdesItem, IN RtpDt_UInt32 uiIndex);
91 tRTCP_SDES_ITEM* getRtcpSdesItem(IN RtpDt_UInt32 uiIndex);
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/
DRtpService.cpp32 RtpDt_UInt32 uiIndex = RTP_ZERO; in addSdesItem() local
36 pobjRtcpCfgInfo->addRtcpSdesItem(&stSdesItem, uiIndex); in addSdesItem()