HomeSort by relevance Sort by last modified time
    Searched refs:RtpHeaderParser (Results 1 - 25 of 45) sorted by null

1 2

  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_header_parser.h 20 class RtpHeaderParser {
22 static RtpHeaderParser* Create();
23 virtual ~RtpHeaderParser() {}
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
bwe_rtp.h 20 class RtpHeaderParser;
32 webrtc::RtpHeaderParser** parser,
rtp_to_text.cc 23 webrtc::RtpHeaderParser* parser;
30 rtc::scoped_ptr<webrtc::RtpHeaderParser> rtp_parser(parser);
bwe_rtp.cc 74 webrtc::RtpHeaderParser** parser,
114 *parser = webrtc::RtpHeaderParser::Create();
bwe_rtp_play.cc 43 webrtc::RtpHeaderParser* parser;
52 rtc::scoped_ptr<webrtc::RtpHeaderParser> rtp_parser(parser);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_header_parser.cc 19 class RtpHeaderParserImpl : public RtpHeaderParser {
37 RtpHeaderParser* RtpHeaderParser::Create() {
44 bool RtpHeaderParser::IsRtcp(const uint8_t* packet, size_t length) {
45 RtpUtility::RtpHeaderParser rtp_parser(packet, length);
52 RtpUtility::RtpHeaderParser rtp_parser(packet, length);
rtp_utility.h 47 class RtpHeaderParser {
49 RtpHeaderParser(const uint8_t* rtpData, size_t rtpDataLength);
50 ~RtpHeaderParser();
rtp_utility.cc 74 RtpHeaderParser::RtpHeaderParser(const uint8_t* rtpData,
80 RtpHeaderParser::~RtpHeaderParser() {
83 bool RtpHeaderParser::RTCP() const {
156 bool RtpHeaderParser::ParseRtcp(RTPHeader* header) const {
183 bool RtpHeaderParser::Parse(RTPHeader* header,
299 void RtpHeaderParser::ParseOneByteExtensionHeader(
427 uint8_t RtpHeaderParser::ParsePaddingBytes(
rtp_sender_unittest.cc 200 webrtc::RtpUtility::RtpHeaderParser rtp_parser(data, len);
335 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
367 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
407 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
435 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
476 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
504 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
524 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
578 webrtc::RtpUtility::RtpHeaderParser rtp_parser(packet_, length);
663 webrtc::RtpUtility::RtpHeaderParser rtp_parser(transport_.last_sent_packet_
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtc_event_log_source.h 23 class RtpHeaderParser;
62 rtc::scoped_ptr<RtpHeaderParser> parser_;
rtp_file_source.h 25 class RtpHeaderParser;
60 rtc::scoped_ptr<RtpHeaderParser> parser_;
packet.h 23 class RtpHeaderParser;
40 const RtpHeaderParser& parser);
52 const RtpHeaderParser& parser);
56 // methods, the header will be parsed using a default RtpHeaderParser object.
102 bool ParseHeader(const RtpHeaderParser& parser);
115 bool valid_header_; // Set by the RtpHeaderParser.
packet.cc 24 const RtpHeaderParser& parser)
39 const RtpHeaderParser& parser)
58 rtc::scoped_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());
73 rtc::scoped_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());
132 bool Packet::ParseHeader(const RtpHeaderParser& parser) {
rtp_file_source.cc 87 parser_(RtpHeaderParser::Create()) {}
rtc_event_log_source.cc 120 : PacketSource(), parser_(RtpHeaderParser::Create()) {}
  /external/webrtc/webrtc/test/
rtp_rtcp_observer.h 61 parser_(RtpHeaderParser::Create()),
72 const rtc::scoped_ptr<RtpHeaderParser> parser_;
94 EXPECT_FALSE(RtpHeaderParser::IsRtcp(packet, length));
114 EXPECT_TRUE(RtpHeaderParser::IsRtcp(packet, length));
layer_filtering_transport.cc 48 RtpUtility::RtpHeaderParser parser(packet, length);
rtp_file_reader_unittest.cc 86 RtpUtility::RtpHeaderParser rtp_header_parser(packet.data, packet.length);
  /external/webrtc/webrtc/call/
packet_injection_tests.cc 25 PacketInjectionTest() : rtp_header_parser_(RtpHeaderParser::Create()) {}
32 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
  /external/webrtc/webrtc/video/
vie_receiver.h 30 class RtpHeaderParser;
109 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
rtp_rtcp_extensions.cc 25 : parser_(webrtc::RtpHeaderParser::Create()),
86 rtc::scoped_ptr<webrtc::RtpHeaderParser> parser_;
  /external/webrtc/webrtc/audio/
audio_receive_stream.h 59 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.cc 272 : rtp_header_parser_(RtpHeaderParser::Create()),
295 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
422 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser(
423 RtpHeaderParser::Create());
  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
conference_transport.h 160 const rtc::scoped_ptr<webrtc::RtpHeaderParser> rtp_header_parser_;
  /external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api.cc 44 rtc::scoped_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());

Completed in 198 milliseconds

1 2