Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dproducer_fec_unittest.cc115 std::list<RtpPacket*> rtp_packets; in TEST_F() local
121 rtp_packets.push_back(rtp_packet); in TEST_F()
137 while (!rtp_packets.empty()) { in TEST_F()
138 delete rtp_packets.front(); in TEST_F()
139 rtp_packets.pop_front(); in TEST_F()
156 std::list<RtpPacket*> rtp_packets; in TEST_F() local
163 rtp_packets.push_back(rtp_packet); in TEST_F()
180 while (!rtp_packets.empty()) { in TEST_F()
181 delete rtp_packets.front(); in TEST_F()
182 rtp_packets.pop_front(); in TEST_F()
/external/webrtc/webrtc/call/
Drtc_event_log_unittest.cc427 std::vector<rtc::Buffer> rtp_packets; in LogSessionAndReadBack() local
441 rtp_packets.push_back(rtc::Buffer(packet_size)); in LogSessionAndReadBack()
444 rtp_packets[i].data(), packet_size, &prng); in LogSessionAndReadBack()
484 rtp_packets[i - 1].data(), rtp_packets[i - 1].size()); in LogSessionAndReadBack()
530 rtp_packets[i - 1].data(), rtp_header_sizes[i - 1], in LogSessionAndReadBack()
531 rtp_packets[i - 1].size()); in LogSessionAndReadBack()
/external/webrtc/talk/media/base/
Dvideoengine_unittest.h769 int rtp_packets = NumRtpPackets(); in AddRemoveSendStreams() local
774 EXPECT_EQ(rtp_packets, NumRtpPackets()); in AddRemoveSendStreams()
777 EXPECT_TRUE_WAIT(NumRtpPackets() > rtp_packets, kTimeout); in AddRemoveSendStreams()
Dfakemediaengine.h70 const std::list<std::string>& rtp_packets() const { return rtp_packets_; } in rtp_packets() function
/external/webrtc/talk/session/media/
Dchannel_unittest.cc489 EXPECT_TRUE(media_channel1_->rtp_packets().empty()); in TestInit()