Searched refs:pstSdesItem (Results 1 – 4 of 4) sorted by relevance
29 for (const auto& pstSdesItem : m_stSdesItemList) in ~RtcpChunk() local31 if (pstSdesItem->pValue != nullptr) in ~RtcpChunk()33 delete[] pstSdesItem->pValue; in ~RtcpChunk()35 delete pstSdesItem; in ~RtcpChunk()64 tRTCP_SDES_ITEM* pstSdesItem = new tRTCP_SDES_ITEM(); in decodeRtcpChunk() local65 if (pstSdesItem == nullptr) in decodeRtcpChunk()70 memset(pstSdesItem, RTP_ZERO, sizeof(tRTCP_SDES_ITEM)); in decodeRtcpChunk()73 pstSdesItem->ucType = *(reinterpret_cast<RtpDt_UChar*>(pucChunkBuf)); in decodeRtcpChunk()77 if (pstSdesItem->ucType == RTP_ONE) in decodeRtcpChunk()82 pstSdesItem->ucLength = *(reinterpret_cast<RtpDt_UChar*>(pucChunkBuf)); in decodeRtcpChunk()[all …]
87 eRtp_Bool RtcpConfigInfo::addRtcpSdesItem(IN tRTCP_SDES_ITEM* pstSdesItem, IN RtpDt_UInt32 uiIndex) in addRtcpSdesItem() argument89 if (pstSdesItem == nullptr) in addRtcpSdesItem()93 m_arrSdesInfo[uiIndex].ucType = pstSdesItem->ucType; in addRtcpSdesItem()94 m_arrSdesInfo[uiIndex].ucLength = pstSdesItem->ucLength; in addRtcpSdesItem()95 if (pstSdesItem->ucLength > RTP_ZERO) in addRtcpSdesItem()97 RtpDt_UChar* pcBuffer = new RtpDt_UChar[pstSdesItem->ucLength]; in addRtcpSdesItem()102 memcpy(pcBuffer, pstSdesItem->pValue, pstSdesItem->ucLength); in addRtcpSdesItem()114 m_arrSdesInfo[uiIndex].uiFreq = pstSdesItem->uiFreq; in addRtcpSdesItem()
1082 tRTCP_SDES_ITEM* pstSdesItem = m_pobjRtcpCfgInfo->getRtcpSdesItem(uiCount); in constructSdesPkt() local1084 if (pstSdesItem && pstSdesItem->pValue != nullptr) in constructSdesPkt()1092 RtpDt_UChar* pucSdesBuf = new RtpDt_UChar[pstSdesItem->ucLength]; in constructSdesPkt()1099 pstTmpSdesItem->ucType = pstSdesItem->ucType; in constructSdesPkt()1100 pstTmpSdesItem->ucLength = pstSdesItem->ucLength; in constructSdesPkt()1101 memcpy(pucSdesBuf, pstSdesItem->pValue, pstSdesItem->ucLength); in constructSdesPkt()
86 eRtp_Bool addRtcpSdesItem(IN tRTCP_SDES_ITEM* pstSdesItem, IN RtpDt_UInt32 uiIndex);