OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RtpDumpWriter
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/test/
rtp_file_writer.cc
28
class
RtpDumpWriter
: public RtpFileWriter {
30
explicit
RtpDumpWriter
(FILE* file) : file_(file) {
34
virtual ~
RtpDumpWriter
() {
89
RTC_DISALLOW_COPY_AND_ASSIGN(
RtpDumpWriter
);
101
return new
RtpDumpWriter
(file);
/external/webrtc/talk/media/base/
rtpdump.cc
318
// Implementation of
RtpDumpWriter
.
321
RtpDumpWriter
::
RtpDumpWriter
(rtc::StreamInterface* stream)
329
void
RtpDumpWriter
::set_packet_filter(int filter) {
331
LOG(LS_INFO) << "
RtpDumpWriter
set_packet_filter to " << packet_filter_;
334
uint32_t
RtpDumpWriter
::GetElapsedTime() const {
338
rtc::StreamResult
RtpDumpWriter
::WriteFileHeader() {
352
rtc::StreamResult
RtpDumpWriter
::WritePacket(const void* data,
389
size_t
RtpDumpWriter
::FilterPacket(const void* data, size_t data_len,
413
rtc::StreamResult
RtpDumpWriter
::WriteToStream
[
all
...]
rtpdump.h
186
class
RtpDumpWriter
{
188
explicit
RtpDumpWriter
(rtc::StreamInterface* stream);
229
RTC_DISALLOW_COPY_AND_ASSIGN(
RtpDumpWriter
);
Completed in 79 milliseconds