Home
last modified time | relevance | path

Searched refs:rtpInfo (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/test/
DChannel.cc28 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 …]
DRTPFile.cc30 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 …]
DRTPFile.h35 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,
DChannel.h97 void CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize);
/external/webrtc/webrtc/modules/video_coding/
Dvideo_receiver.cc435 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()
Dvideo_coding_impl.cc234 const WebRtcRTPHeader& rtpInfo) override { in IncomingPacket() argument
235 return receiver_.IncomingPacket(incomingPayload, payloadLength, rtpInfo); in IncomingPacket()
Dvideo_coding_impl.h158 const WebRtcRTPHeader& rtpInfo);
/external/webrtc/webrtc/modules/video_coding/include/
Dvideo_coding.h424 const WebRtcRTPHeader& rtpInfo) = 0;