Searched refs:rtpInfo (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/webrtc/modules/audio_coding/test/ |
D | Channel.cc | 28 WebRtcRTPHeader rtpInfo; in SendData() local 32 rtpInfo.header.markerBit = false; in SendData() 33 rtpInfo.header.ssrc = 0; in SendData() 34 rtpInfo.header.sequenceNumber = (external_sequence_number_ < 0) ? in SendData() 36 rtpInfo.header.payloadType = payloadType; in SendData() 37 rtpInfo.header.timestamp = (external_send_timestamp_ < 0) ? timeStamp : in SendData() 41 rtpInfo.type.Audio.isCNG = true; in SendData() 43 rtpInfo.type.Audio.isCNG = false; in SendData() 52 rtpInfo.type.Audio.channel = 1; in SendData() 81 rtpInfo.header.payloadType = fragmentation->fragmentationPlType[0]; in SendData() [all …]
|
D | RTPFile.cc | 30 void RTPStream::ParseRTPHeader(WebRtcRTPHeader* rtpInfo, in ParseRTPHeader() argument 32 rtpInfo->header.payloadType = rtpHeader[1]; in ParseRTPHeader() 33 rtpInfo->header.sequenceNumber = (static_cast<uint16_t>(rtpHeader[2]) << 8) | in ParseRTPHeader() 35 rtpInfo->header.timestamp = (static_cast<uint32_t>(rtpHeader[4]) << 24) | in ParseRTPHeader() 38 rtpInfo->header.ssrc = (static_cast<uint32_t>(rtpHeader[8]) << 24) | in ParseRTPHeader() 96 size_t RTPBuffer::Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, in Read() argument 102 rtpInfo->header.markerBit = 1; in Read() 103 rtpInfo->header.payloadType = packet->payloadType; in Read() 104 rtpInfo->header.sequenceNumber = packet->seqNo; in Read() 105 rtpInfo->header.ssrc = 0; in Read() [all …]
|
D | RTPFile.h | 35 virtual size_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, 43 void ParseRTPHeader(WebRtcRTPHeader* rtpInfo, const uint8_t* rtpHeader); 75 size_t Read(WebRtcRTPHeader* rtpInfo, 112 size_t Read(WebRtcRTPHeader* rtpInfo,
|
D | Channel.h | 97 void CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize);
|
/external/webrtc/webrtc/modules/video_coding/ |
D | video_receiver.cc | 435 const WebRtcRTPHeader& rtpInfo) { in IncomingPacket() argument 436 if (rtpInfo.frameType == kVideoFrameKey) { in IncomingPacket() 438 rtpInfo.header.sequenceNumber); in IncomingPacket() 446 const VCMPacket packet(incomingPayload, payloadLength, rtpInfo); in IncomingPacket() 447 int32_t ret = _receiver.InsertPacket(packet, rtpInfo.type.Video.width, in IncomingPacket() 448 rtpInfo.type.Video.height); in IncomingPacket()
|
D | video_coding_impl.cc | 234 const WebRtcRTPHeader& rtpInfo) override { in IncomingPacket() argument 235 return receiver_.IncomingPacket(incomingPayload, payloadLength, rtpInfo); in IncomingPacket()
|
D | video_coding_impl.h | 158 const WebRtcRTPHeader& rtpInfo);
|
/external/webrtc/webrtc/modules/video_coding/include/ |
D | video_coding.h | 424 const WebRtcRTPHeader& rtpInfo) = 0;
|