OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RtpDumpLoopReader
(Results
1 - 8
of
8
) sorted by null
/external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.h
116
//
RtpDumpLoopReader
reads RTP dump packets from the input stream and rewinds
117
// the stream when it ends.
RtpDumpLoopReader
maintains the elapsed time, the
118
// RTP sequence number and the RTP timestamp properly.
RtpDumpLoopReader
can
121
class
RtpDumpLoopReader
: public RtpDumpReader {
123
explicit
RtpDumpLoopReader
(talk_base::StreamInterface* stream);
161
DISALLOW_COPY_AND_ASSIGN(
RtpDumpLoopReader
);
rtpdump.cc
168
// Implementation of
RtpDumpLoopReader
.
170
RtpDumpLoopReader
::
RtpDumpLoopReader
(talk_base::StreamInterface* stream)
186
talk_base::StreamResult
RtpDumpLoopReader
::ReadPacket(RtpDumpPacket* packet) {
220
void
RtpDumpLoopReader
::UpdateStreamStatistics(const RtpDumpPacket& packet) {
244
void
RtpDumpLoopReader
::CalculateIncreases() {
259
void
RtpDumpLoopReader
::UpdateDumpPacket(RtpDumpPacket* packet) {
filemediaengine.cc
104
talk_base::scoped_ptr<
RtpDumpLoopReader
> rtp_dump_reader_;
128
rtp_dump_reader_.reset(new
RtpDumpLoopReader
(input_stream_.get()));
/external/chromium_org/third_party/libjingle/source/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
(talk_base::StreamInterface* stream);
183
DISALLOW_COPY_AND_ASSIGN(
RtpDumpLoopReader
);
rtpdump.cc
205
// Implementation of
RtpDumpLoopReader
.
207
RtpDumpLoopReader
::
RtpDumpLoopReader
(talk_base::StreamInterface* stream)
223
talk_base::StreamResult
RtpDumpLoopReader
::ReadPacket(RtpDumpPacket* packet) {
257
void
RtpDumpLoopReader
::UpdateStreamStatistics(const RtpDumpPacket& packet) {
281
void
RtpDumpLoopReader
::CalculateIncreases() {
296
void
RtpDumpLoopReader
::UpdateDumpPacket(RtpDumpPacket* packet) {
filemediaengine.cc
152
talk_base::scoped_ptr<
RtpDumpLoopReader
> rtp_dump_reader_;
188
rtp_dump_reader_.reset(new
RtpDumpLoopReader
(input_stream_.get()));
rtpdump_unittest.cc
231
// Test that
RtpDumpLoopReader
reads RTP packets continously and the elapsed
242
// Test that
RtpDumpLoopReader
reads RTCP packets continously and the elapsed
253
// Test that
RtpDumpLoopReader
reads continously from stream with a single RTP
269
RtpDumpLoopReader
loop_reader(&stream);
275
// Test that
RtpDumpLoopReader
reads continously from stream with a single RTCP
291
RtpDumpLoopReader
loop_reader(&stream);
testutils.cc
163
RtpDumpLoopReader
reader(stream);
Completed in 184 milliseconds