OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtp_packets_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/media/base/
fakenetworkinterface.h
73
for (size_t i = 0; i <
rtp_packets_
.size(); ++i) {
74
bytes += static_cast<int>(
rtp_packets_
[i].length());
88
return static_cast<int>(
rtp_packets_
.size());
109
return new rtc::Buffer(
rtp_packets_
[index]);
155
rtp_packets_
.push_back(*packet);
223
for (size_t i = 0; i <
rtp_packets_
.size(); ++i) {
224
if (!GetRtpSsrc(
rtp_packets_
[i].data(),
225
rtp_packets_
[i].length(), &cur_ssrc)) {
230
*bytes += static_cast<int>(
rtp_packets_
[i].length());
250
std::vector<rtc::Buffer>
rtp_packets_
;
member in class:cricket::FakeNetworkInterface
[
all
...]
fakemediaengine.h
69
const std::list<std::string>& rtp_packets() const { return
rtp_packets_
; }
85
bool success = !
rtp_packets_
.empty();
87
std::string packet =
rtp_packets_
.front();
88
rtp_packets_
.pop_front();
102
bool CheckNoRtp() { return
rtp_packets_
.empty(); }
196
rtp_packets_
.push_back(std::string(packet->data(), packet->length()));
213
std::list<std::string>
rtp_packets_
;
member in class:cricket::RtpHelper
[
all
...]
Completed in 45 milliseconds