Home
last modified time | relevance | path

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

/packages/modules/ImsMedia/tests/native/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtpPacketTest.cpp80 uint8_t pobjRtpPktBuf[] = {0x90, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
84 RtpBuffer rtpBuffer(sizeof(pobjRtpPktBuf), pobjRtpPktBuf); in TEST()
132 uint8_t pobjRtpPktBuf[] = {0x50, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
136 RtpBuffer rtpBuffer(sizeof(pobjRtpPktBuf), pobjRtpPktBuf); in TEST()
167 uint8_t pobjRtpPktBuf[] = {0x50, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
170 RtpBuffer rtpBuffer(sizeof(pobjRtpPktBuf), pobjRtpPktBuf); in TEST()
202 uint8_t pobjRtpPktBuf[] = {0xB0, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
206 RtpBuffer rtpBuffer(sizeof(pobjRtpPktBuf), pobjRtpPktBuf); in TEST()
DRtpStackUtilTest.cpp22 uint8_t pobjRtpPktBuf[] = {0x90, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
26 EXPECT_EQ(RtpStackUtil::getSequenceNumber(pobjRtpPktBuf), 0xa583); in TEST()
32 uint8_t pobjRtpPktBuf[] = {0x90, 0xe3, 0xa5, 0x83, 0x00, 0x00, 0xe1, 0xc8, 0x92, 0x7d, 0xcd, in TEST() local
36 EXPECT_EQ(RtpStackUtil::getRtpSsrc(pobjRtpPktBuf), 0x927dcd02); in TEST()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/rtp/core/
DRtpPacket.cpp70 eRtp_Bool RtpPacket::formPacket(IN RtpBuffer* pobjRtpPktBuf) in formPacket() argument
73 RtpDt_UChar* pcRtpBuf = pobjRtpPktBuf->getBuffer(); in formPacket()
76 eRtp_Bool bPackRes = m_objRtpHeader.formHeader(pobjRtpPktBuf); in formPacket()
83 RtpDt_UInt32 uiRtpBufPos = pobjRtpPktBuf->getLength(); in formPacket()
125 pobjRtpPktBuf->setLength(uiRtpBufPos); in formPacket()
130 eRtp_Bool RtpPacket::decodePacket(IN RtpBuffer* pobjRtpPktBuf) in decodePacket() argument
134 RtpDt_UChar* pcRtpBuf = pobjRtpPktBuf->getBuffer(); in decodePacket()
136 uiRtpUtlBufLen = pobjRtpPktBuf->getLength(); in decodePacket()
139 m_objRtpHeader.decodeHeader(pobjRtpPktBuf, uiRtpBufPos); in decodePacket()
DRtpHeader.cpp144 eRtp_Bool RtpHeader::formHeader(IN RtpBuffer* pobjRtpPktBuf) in formHeader() argument
150 RtpDt_UChar* pucRtpHeaderBuffer = pobjRtpPktBuf->getBuffer(); in formHeader()
199 pobjRtpPktBuf->setLength(uiBufLen); in formHeader()
204 eRtp_Bool RtpHeader::decodeHeader(IN RtpBuffer* pobjRtpPktBuf, OUT RtpDt_UInt32& uiBufPos) in decodeHeader() argument
207 RtpDt_UChar* pucRtpHeaderBuffer = pobjRtpPktBuf->getBuffer(); in decodeHeader()
208 RtpDt_UInt32 uiRtpBufferLength = pobjRtpPktBuf->getLength(); in decodeHeader()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/protocol/include/rtp/core/
DRtpPacket.h83 eRtp_Bool formPacket(OUT RtpBuffer* pobjRtpPktBuf);
92 eRtp_Bool decodePacket(IN RtpBuffer* pobjRtpPktBuf);
DRtpHeader.h206 eRtp_Bool formHeader(IN RtpBuffer* pobjRtpPktBuf);
214 eRtp_Bool decodeHeader(IN RtpBuffer* pobjRtpPktBuf, OUT RtpDt_UInt32& uiBufPos);