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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
RTPFile.cc 28 void RTPStream::ParseRTPHeader(WebRtcRTPHeader* rtpInfo,
30 rtpInfo->header.payloadType = rtpHeader[1];
31 rtpInfo->header.sequenceNumber = (static_cast<uint16_t>(rtpHeader[2]) << 8) |
33 rtpInfo->header.timestamp = (static_cast<uint32_t>(rtpHeader[4]) << 24) |
36 rtpInfo->header.ssrc = (static_cast<uint32_t>(rtpHeader[8]) << 24) |
97 uint16_t RTPBuffer::Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
103 rtpInfo->header.markerBit = 1;
104 rtpInfo->header.payloadType = packet->payloadType;
105 rtpInfo->header.sequenceNumber = packet->seqNo;
106 rtpInfo->header.ssrc = 0
    [all...]
Channel.cc 25 WebRtcRTPHeader rtpInfo;
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.header.payloadType = fragmentation->fragmentationPlType[0]
    [all...]
RTPFile.h 35 virtual uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
43 void ParseRTPHeader(WebRtcRTPHeader* rtpInfo, const uint8_t* rtpHeader);
72 uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
104 uint16_t Read(WebRtcRTPHeader* rtpInfo, uint8_t* payloadData,
Channel.h 95 void CalcStatistics(WebRtcRTPHeader& rtpInfo, uint16_t payloadSize);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
test_callbacks.cc 70 WebRtcRTPHeader rtpInfo;
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.header.payloadType = payloadType
    [all...]
normal_test.cc 90 WebRtcRTPHeader rtpInfo;
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.header.sequenceNumber = _seqNo++
    [all...]
generic_codec_test.cc 548 WebRtcRTPHeader rtpInfo;
549 rtpInfo.header.markerBit = true; // end of frame
550 rtpInfo.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
551 rtpInfo.type.Video.codec = kRtpVideoVp8;
552 rtpInfo.header.payloadType = payloadType;
553 rtpInfo.header.sequenceNumber = _seqNo;
555 rtpInfo.header.ssrc = 0;
556 rtpInfo.header.timestamp = _timeStamp;
558 rtpInfo.type.Video.isFirstPacket = false;
559 rtpInfo.frameType = kVideoFrameKey
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_receiver.cc 628 const WebRtcRTPHeader& rtpInfo) {
629 if (rtpInfo.frameType == kVideoFrameKey) {
633 rtpInfo.header.sequenceNumber);
641 const VCMPacket packet(incomingPayload, payloadLength, rtpInfo);
645 packet, rtpInfo.type.Video.width, rtpInfo.type.Video.height);
654 packet, rtpInfo.type.Video.width, rtpInfo.type.Video.height);
video_coding_impl.cc 305 const WebRtcRTPHeader& rtpInfo) OVERRIDE {
306 return receiver_->IncomingPacket(incomingPayload, payloadLength, rtpInfo);
video_coding_impl.h 163 const WebRtcRTPHeader& rtpInfo);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
video_coding.h 465 // - rtpInfo : The parsed header.
471 const WebRtcRTPHeader& rtpInfo) = 0;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
neteq_unittest.cc 315 WebRtcRTPHeader rtpInfo;
316 rtp->parseHeader(&rtpInfo);
318 rtpInfo,
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h     [all...]

Completed in 1436 milliseconds