OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RtpDumpLoopReader
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/talk/media/base/
rtpdump.h
138
//
RtpDumpLoopReader
reads RTP dump packets from the input stream and rewinds
139
// the stream when it ends.
RtpDumpLoopReader
maintains the elapsed time, the
140
// RTP sequence number and the RTP timestamp properly.
RtpDumpLoopReader
can
143
class
RtpDumpLoopReader
: public RtpDumpReader {
145
explicit
RtpDumpLoopReader
(rtc::StreamInterface* stream);
183
RTC_DISALLOW_COPY_AND_ASSIGN(
RtpDumpLoopReader
);
rtpdump.cc
205
// Implementation of
RtpDumpLoopReader
.
207
RtpDumpLoopReader
::
RtpDumpLoopReader
(rtc::StreamInterface* stream)
223
rtc::StreamResult
RtpDumpLoopReader
::ReadPacket(RtpDumpPacket* packet) {
257
void
RtpDumpLoopReader
::UpdateStreamStatistics(const RtpDumpPacket& packet) {
281
void
RtpDumpLoopReader
::CalculateIncreases() {
296
void
RtpDumpLoopReader
::UpdateDumpPacket(RtpDumpPacket* packet) {
rtpdump_unittest.cc
232
// Test that
RtpDumpLoopReader
reads RTP packets continously and the elapsed
243
// Test that
RtpDumpLoopReader
reads RTCP packets continously and the elapsed
254
// Test that
RtpDumpLoopReader
reads continously from stream with a single RTP
270
RtpDumpLoopReader
loop_reader(&stream);
276
// Test that
RtpDumpLoopReader
reads continously from stream with a single RTCP
292
RtpDumpLoopReader
loop_reader(&stream);
testutils.cc
170
RtpDumpLoopReader
reader(stream);
Completed in 59 milliseconds