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

/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DRTPFile.cc29 void RTPStream::ParseRTPHeader(WebRtcRTPHeader* rtpInfo, argument
31 rtpInfo->header.payloadType = rtpHeader[1];
32 rtpInfo->header.sequenceNumber = (static_cast<uint16_t>(rtpHeader[2]) << 8) |
34 rtpInfo->header.timestamp = (static_cast<uint32_t>(rtpHeader[4]) << 24) |
37 rtpInfo->header.ssrc = (static_cast<uint32_t>(rtpHeader[8]) << 24) |
98 uint16_t RTPBuffer::Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, argument
104 rtpInfo->header.markerBit = 1;
105 rtpInfo->header.payloadType = packet->payloadType;
106 rtpInfo->header.sequenceNumber = packet->seqNo;
107 rtpInfo
210 Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData, uint16_t payloadSize, uint32_t* offset) argument
[all...]
H A DChannel.cc25 WebRtcRTPHeader rtpInfo; local
29 rtpInfo.header.markerBit = false;
30 rtpInfo.header.ssrc = 0;
31 rtpInfo.header.sequenceNumber = (external_sequence_number_ < 0) ?
33 rtpInfo.header.payloadType = payloadType;
34 rtpInfo.header.timestamp = (external_send_timestamp_ < 0) ? timeStamp :
38 rtpInfo.type.Audio.isCNG = true;
40 rtpInfo.type.Audio.isCNG = false;
47 rtpInfo.type.Audio.channel = 1;
76 rtpInfo
124 CalcStatistics(WebRtcRTPHeader& rtpInfo, uint16_t payloadSize) argument
[all...]
H A DRTPFile.h35 virtual uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
43 void ParseRTPHeader(WebRtcRTPHeader* rtpInfo, const uint8_t* rtpHeader);
72 virtual uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
104 virtual uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
H A DChannel.h96 void CalcStatistics(WebRtcRTPHeader& rtpInfo, uint16_t payloadSize);
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dtest_callbacks.cc70 WebRtcRTPHeader rtpInfo; local
71 rtpInfo.header.markerBit = true; // end of frame
72 rtpInfo.type.Video.isFirstPacket = true;
73 rtpInfo.type.Video.codec = _codecType;
74 rtpInfo.type.Video.height = (uint16_t)_height;
75 rtpInfo.type.Video.width = (uint16_t)_width;
79 rtpInfo.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
80 rtpInfo.type.Video.codecHeader.VP8.nonReference =
82 rtpInfo.type.Video.codecHeader.VP8.pictureId =
90 rtpInfo
[all...]
H A Dnormal_test.cc90 WebRtcRTPHeader rtpInfo; local
91 rtpInfo.header.markerBit = true;
92 rtpInfo.type.Video.width = 0;
93 rtpInfo.type.Video.height = 0;
97 rtpInfo.type.Video.codec = kRtpVideoVp8;
98 rtpInfo.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
99 rtpInfo.type.Video.codecHeader.VP8.nonReference =
101 rtpInfo.type.Video.codecHeader.VP8.pictureId =
108 rtpInfo.header.payloadType = payloadType;
109 rtpInfo
[all...]
H A Dgeneric_codec_test.cc545 WebRtcRTPHeader rtpInfo; local
546 rtpInfo.header.markerBit = true; // end of frame
547 rtpInfo.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
548 rtpInfo.type.Video.codec = kRtpVideoVp8;
549 rtpInfo.header.payloadType = payloadType;
550 rtpInfo.header.sequenceNumber = _seqNo;
552 rtpInfo.header.ssrc = 0;
553 rtpInfo.header.timestamp = _timeStamp;
555 rtpInfo.type.Video.isFirstPacket = false;
556 rtpInfo
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dvideo_receiver.cc633 const WebRtcRTPHeader& rtpInfo) {
634 if (rtpInfo.frameType == kVideoFrameKey) {
638 rtpInfo.header.sequenceNumber);
646 const VCMPacket packet(incomingPayload, payloadLength, rtpInfo);
650 packet, rtpInfo.type.Video.width, rtpInfo.type.Video.height);
659 packet, rtpInfo.type.Video.width, rtpInfo.type.Video.height);
631 IncomingPacket(const uint8_t* incomingPayload, uint32_t payloadLength, const WebRtcRTPHeader& rtpInfo) argument
H A Dvideo_coding_impl.cc305 const WebRtcRTPHeader& rtpInfo) OVERRIDE {
306 return receiver_->IncomingPacket(incomingPayload, payloadLength, rtpInfo);
H A Dvideo_coding_impl.h164 const WebRtcRTPHeader& rtpInfo);
/external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
H A Dvideo_coding.h465 // - rtpInfo : The parsed header.
471 const WebRtcRTPHeader& rtpInfo) = 0;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dneteq_unittest.cc314 WebRtcRTPHeader rtpInfo; local
315 rtp->parseHeader(&rtpInfo);
317 rtpInfo,

Completed in 206 milliseconds