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

/external/webrtc/webrtc/modules/audio_coding/test/
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...]
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.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,
H A DChannel.h97 void CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize);
/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
H A Dvideo_coding_impl.cc234 const WebRtcRTPHeader& rtpInfo) override {
235 return receiver_.IncomingPacket(incomingPayload, payloadLength, rtpInfo);
H A Dvideo_coding_impl.h158 const WebRtcRTPHeader& rtpInfo);
/external/webrtc/webrtc/modules/video_coding/include/
H A Dvideo_coding.h418 // - rtpInfo : The parsed header.
424 const WebRtcRTPHeader& rtpInfo) = 0;

Completed in 217 milliseconds