Searched defs:rtpInfo (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/test/
H A DChannel.cc28 WebRtcRTPHeader rtpInfo; local
32 rtpInfo.header.markerBit = false;
33 rtpInfo.header.ssrc = 0;
34 rtpInfo.header.sequenceNumber = (external_sequence_number_ < 0) ?
36 rtpInfo.header.payloadType = payloadType;
37 rtpInfo.header.timestamp = (external_send_timestamp_ < 0) ? timeStamp :
41 rtpInfo.type.Audio.isCNG = true;
43 rtpInfo.type.Audio.isCNG = false;
52 rtpInfo.type.Audio.channel = 1;
81 rtpInfo
130 CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize) argument
[all...]
H A DRTPFile.cc30 void RTPStream::ParseRTPHeader(WebRtcRTPHeader* rtpInfo, argument
32 rtpInfo->header.payloadType = rtpHeader[1];
33 rtpInfo->header.sequenceNumber = (static_cast<uint16_t>(rtpHeader[2]) << 8) |
35 rtpInfo->header.timestamp = (static_cast<uint32_t>(rtpHeader[4]) << 24) |
38 rtpInfo->header.ssrc = (static_cast<uint32_t>(rtpHeader[8]) << 24) |
96 size_t RTPBuffer::Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, argument
102 rtpInfo->header.markerBit = 1;
103 rtpInfo->header.payloadType = packet->payloadType;
104 rtpInfo->header.sequenceNumber = packet->seqNo;
105 rtpInfo
189 Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, size_t payloadSize, uint32_t* offset) argument
[all...]
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_receiver.cc435 const WebRtcRTPHeader& rtpInfo) {
436 if (rtpInfo.frameType == kVideoFrameKey) {
438 rtpInfo.header.sequenceNumber);
446 const VCMPacket packet(incomingPayload, payloadLength, rtpInfo);
447 int32_t ret = _receiver.InsertPacket(packet, rtpInfo.type.Video.width,
448 rtpInfo.type.Video.height);
433 IncomingPacket(const uint8_t* incomingPayload, size_t payloadLength, const WebRtcRTPHeader& rtpInfo) argument

Completed in 611 milliseconds