Home
last modified time | relevance | path

Searched refs:RtpDumpPacket (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/talk/media/base/
Drtpdump.cc66 bool RtpDumpPacket::IsValidRtpPacket() const { in IsValidRtpPacket()
71 bool RtpDumpPacket::IsValidRtcpPacket() const { in IsValidRtcpPacket()
76 bool RtpDumpPacket::GetRtpPayloadType(int* pt) const { in GetRtpPayloadType()
81 bool RtpDumpPacket::GetRtpSeqNum(int* seq_num) const { in GetRtpSeqNum()
86 bool RtpDumpPacket::GetRtpTimestamp(uint32_t* ts) const { in GetRtpTimestamp()
91 bool RtpDumpPacket::GetRtpSsrc(uint32_t* ssrc) const { in GetRtpSsrc()
96 bool RtpDumpPacket::GetRtpHeaderLen(size_t* len) const { in GetRtpHeaderLen()
101 bool RtpDumpPacket::GetRtcpType(int* type) const { in GetRtcpType()
114 rtc::StreamResult RtpDumpReader::ReadPacket(RtpDumpPacket* packet) { in ReadPacket()
128 char header[RtpDumpPacket::kHeaderLength]; in ReadPacket()
[all …]
Drtpdump.h71 struct RtpDumpPacket { struct
72 RtpDumpPacket() {} in RtpDumpPacket() function
74 RtpDumpPacket(const void* d, size_t s, uint32_t elapsed, bool rtcp) in RtpDumpPacket() function
117 virtual rtc::StreamResult ReadPacket(RtpDumpPacket* packet); argument
146 virtual rtc::StreamResult ReadPacket(RtpDumpPacket* packet);
151 void UpdateStreamStatistics(const RtpDumpPacket& packet);
160 void UpdateDumpPacket(RtpDumpPacket* packet);
200 rtc::StreamResult WritePacket(const RtpDumpPacket& packet) { in WritePacket()
Drtpdump_unittest.cc45 RtpDumpPacket rtp_packet(rtp_buf.Data(), rtp_buf.Length(), 0, false); in TEST()
67 RtpDumpPacket rtcp_packet(rtcp_buf.Data(), rtcp_buf.Length(), 0, true); in TEST()
78 RtpDumpPacket packet; in TEST()
128 RtpDumpPacket packet; in TEST()
166 RtpDumpPacket packet; in TEST()
193 RtpDumpPacket packet; in TEST()
221 RtpDumpPacket packet; in TEST()
262 RtpDumpPacket packet; in TEST()
284 RtpDumpPacket packet; in TEST()
Dtestutils.h60 struct RtpDumpPacket;
117 static bool VerifyPacket(const RtpDumpPacket* dump,
Dtestutils.cc155 RtpDumpPacket dump_packet(buf.Data(), buf.Length(), elapsed_time_ms, rtcp); in WriteTestPackets()
176 RtpDumpPacket packet; in VerifyTestPacketsFromStream()
208 bool RtpTestUtility::VerifyPacket(const RtpDumpPacket* dump, in VerifyPacket()