Searched refs:uXHdrLen (Results 1 – 1 of 1) sorted by relevance
156 RtpDt_UInt16 uXHdrLen = in decodePacket() local159 uXHdrLen += 1; // add a word for header type info in decodePacket()160 uXHdrLen *= RTP_WORD_SIZE; // convert word to byte in decodePacket()162 if ((uXHdrLen <= 0) || ((uiRtpBufPos + uXHdrLen) > uiRtpUtlBufLen)) in decodePacket()164 RTP_TRACE_ERROR("[decodePacket] Invalid Header Extension len[%d]", uXHdrLen, 0); in decodePacket()168 RtpDt_UChar* pRtpExtData = new RtpDt_UChar[uXHdrLen]; in decodePacket()170 memcpy(pRtpExtData, pcRtpBuf, uXHdrLen); in decodePacket()171 m_pobjExt->setBufferInfo(uXHdrLen, pRtpExtData); in decodePacket()173 pcRtpBuf = pcRtpBuf + uXHdrLen; in decodePacket()174 uiRtpBufPos = uiRtpBufPos + uXHdrLen; in decodePacket()