HomeSort by relevance Sort by last modified time
    Searched refs:rtpInfo (Results 1 - 9 of 9) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/test/
RTPFile.cc 30 void RTPStream::ParseRTPHeader(WebRtcRTPHeader* rtpInfo,
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,
102 rtpInfo->header.markerBit = 1;
103 rtpInfo->header.payloadType = packet->payloadType;
104 rtpInfo->header.sequenceNumber = packet->seqNo;
105 rtpInfo->header.ssrc = 0
    [all...]
Channel.cc 28 WebRtcRTPHeader rtpInfo;
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.header.payloadType = fragmentation->fragmentationPlType[0]
    [all...]
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,
Channel.h 97 void CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize);
  /external/webrtc/webrtc/modules/video_coding/
video_receiver.cc 435 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);
video_coding_impl.cc 234 const WebRtcRTPHeader& rtpInfo) override {
235 return receiver_.IncomingPacket(incomingPayload, payloadLength, rtpInfo);
video_coding_impl.h 158 const WebRtcRTPHeader& rtpInfo);
  /external/webrtc/webrtc/modules/video_coding/include/
video_coding.h 418 // - rtpInfo : The parsed header.
424 const WebRtcRTPHeader& rtpInfo) = 0;
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h     [all...]

Completed in 393 milliseconds