Home
last modified time | relevance | path

Searched refs:uiByte4Data (Results 1 – 6 of 6) sorted by relevance

/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtpStackUtil.cpp30 RtpDt_UInt32 uiByte4Data = RTP_ZERO; in getSequenceNumber() local
33 uiByte4Data = RtpOsUtil::Ntohl(*(reinterpret_cast<RtpDt_UInt32*>(pucRtpHdrBuf))); in getSequenceNumber()
34 usSeqNum = (RtpDt_UInt16)(uiByte4Data & RTP_HEX_16_BIT_MAX); in getSequenceNumber()
46 RtpDt_UInt32 uiByte4Data = RTP_ZERO; in getRtpSsrc() local
49 uiByte4Data = RtpOsUtil::Ntohl(*(reinterpret_cast<RtpDt_UInt32*>(pucRtpBuf))); in getRtpSsrc()
50 return uiByte4Data; in getRtpSsrc()
61 RtpDt_UInt32 uiByte4Data = RtpOsUtil::Ntohl(*(reinterpret_cast<RtpDt_UInt32*>(pucRtcpBuf))); in getRtcpSsrc() local
62 return uiByte4Data; in getRtcpSsrc()
DRtcpByePacket.cpp92 RtpDt_UInt32 uiByte4Data = RtpOsUtil::Ntohl(*(reinterpret_cast<RtpDt_UInt32*>(pucByeBuf))); in decodeByePacket() local
94 uiByte4Data = uiByte4Data >> RTP_24; // length of "Reason for leaving" in decodeByePacket()
95 if (uiByte4Data > RTP_ZERO) in decodeByePacket()
97 RtpDt_UChar* pucReason = new RtpDt_UChar[uiByte4Data]; in decodeByePacket()
111 memset(pucReason, RTP_ZERO, uiByte4Data); in decodeByePacket()
112 memcpy(pucReason, pucByeBuf, uiByte4Data); in decodeByePacket()
113 m_pReason->setBufferInfo(uiByte4Data, pucReason); in decodeByePacket()
DRtpHeader.cpp170 RtpDt_UInt32 uiByte4Data = usTmpData; in formHeader() local
171 uiByte4Data = uiByte4Data << RTP_SIXTEEN; in formHeader()
174 uiByte4Data = uiByte4Data | m_usSequenceNumber; in formHeader()
176 *(reinterpret_cast<RtpDt_UInt32*>(pucRtpHeaderBuffer)) = RtpOsUtil::Ntohl(uiByte4Data); in formHeader()
217 RtpDt_UInt32 uiByte4Data = in decodeHeader() local
223 RtpDt_UInt16 usUtl2Data = (RtpDt_UInt16)(uiByte4Data >> RTP_SIXTEEN); in decodeHeader()
243 m_usSequenceNumber = (RtpDt_UInt16)(uiByte4Data & RTP_HEX_16_BIT_MAX); in decodeHeader()
DRtcpHeader.cpp187 RtpDt_UInt32 uiByte4Data = usTmpData; in formPartialRtcpHeader() local
188 uiByte4Data = uiByte4Data << RTP_SIXTEEN; in formPartialRtcpHeader()
195 uiByte4Data = uiByte4Data | m_usLength; in formPartialRtcpHeader()
197 *(reinterpret_cast<RtpDt_UInt32*>(pcRtcpHdrBuf)) = RtpOsUtil::Ntohl(uiByte4Data); in formPartialRtcpHeader()
DRtpPacket.cpp155 RtpDt_UInt32 uiByte4Data = RtpOsUtil::Ntohl(*(reinterpret_cast<RtpDt_UInt32*>(pcRtpBuf))); in decodePacket() local
157 (RtpDt_UInt16)(uiByte4Data & RTP_HEX_16_BIT_MAX); // add header size in decodePacket()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/
DRtpService.cpp58 RtpDt_Int32 uiByte4Data = in populateReceiveRtpIndInfo() local
60 pstRtpIndMsg->wDefinedByProfile = uiByte4Data >> 16; in populateReceiveRtpIndInfo()
61 pstRtpIndMsg->wExtLen = uiByte4Data & 0x00FF; in populateReceiveRtpIndInfo()