Searched refs:RtcpParser (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/media/cast/rtcp/ |
D | rtcp_receiver.h | 56 void IncomingRtcpPacket(RtcpParser* rtcp_parser); 59 void HandleSenderReport(RtcpParser* rtcp_parser); 61 void HandleReceiverReport(RtcpParser* rtcp_parser); 66 void HandleSDES(RtcpParser* rtcp_parser); 67 void HandleSDESChunk(RtcpParser* rtcp_parser); 69 void HandleBYE(RtcpParser* rtcp_parser); 71 void HandleXr(RtcpParser* rtcp_parser); 72 void HandleRrtr(RtcpParser* rtcp_parser, uint32 remote_ssrc); 73 void HandleDlrr(RtcpParser* rtcp_parser); 76 void HandleNACK(RtcpParser* rtcp_parser); [all …]
|
D | rtcp_utility.cc | 13 RtcpParser::RtcpParser(const uint8* rtcpData, size_t rtcpDataLength) in RtcpParser() function in media::cast::RtcpParser 25 RtcpParser::~RtcpParser() {} in ~RtcpParser() 27 RtcpFieldTypes RtcpParser::FieldType() const { in FieldType() 31 const RtcpField& RtcpParser::Field() const { in Field() 35 RtcpFieldTypes RtcpParser::Begin() { in Begin() 40 RtcpFieldTypes RtcpParser::Iterate() { in Iterate() 99 void RtcpParser::IterateTopLevel() { in IterateTopLevel() 161 void RtcpParser::IterateReportBlockItem() { in IterateReportBlockItem() 166 void RtcpParser::IterateSdesItem() { in IterateSdesItem() 171 void RtcpParser::IterateByeItem() { in IterateByeItem() [all …]
|
D | rtcp_receiver.cc | 78 void RtcpReceiver::IncomingRtcpPacket(RtcpParser* rtcp_parser) { in IncomingRtcpPacket() 145 void RtcpReceiver::HandleSenderReport(RtcpParser* rtcp_parser) { in HandleSenderReport() 179 void RtcpReceiver::HandleReceiverReport(RtcpParser* rtcp_parser) { in HandleReceiverReport() 238 void RtcpReceiver::HandleSDES(RtcpParser* rtcp_parser) { in HandleSDES() 246 void RtcpReceiver::HandleSDESChunk(RtcpParser* rtcp_parser) { in HandleSDESChunk() 251 void RtcpReceiver::HandleXr(RtcpParser* rtcp_parser) { in HandleXr() 272 void RtcpReceiver::HandleRrtr(RtcpParser* rtcp_parser, uint32 remote_ssrc) { in HandleRrtr() 288 void RtcpReceiver::HandleDlrr(RtcpParser* rtcp_parser) { in HandleDlrr() 302 void RtcpReceiver::HandleNACK(RtcpParser* rtcp_parser) { in HandleNACK() 336 void RtcpReceiver::HandleBYE(RtcpParser* rtcp_parser) { in HandleBYE() [all …]
|
D | rtcp_utility.h | 257 class RtcpParser { 259 RtcpParser(const uint8* rtcp_data, size_t rtcp_length); 260 ~RtcpParser(); 355 DISALLOW_COPY_AND_ASSIGN(RtcpParser);
|
D | rtcp_receiver_unittest.cc | 198 RtcpParser rtcp_parser(packet, length); in InjectRtcpPacket() 444 RtcpParser rtcp_parser(p.Packet(), p.Length()); in TEST_F() 477 RtcpParser rtcp_parser(p.Packet(), p.Length()); in TEST_F() 528 RtcpParser rtcp_parser(p.Packet(), p.Length()); in TEST_F() 577 RtcpParser rtcp_parser(p.Packet(), p.Length()); in TEST_F()
|
D | rtcp.cc | 236 RtcpParser rtcp_parser(rtcp_buffer, length); in IncomingRtcpPacket()
|