OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Rtcp
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/neteq/
rtcp.h
23
class
Rtcp
{
25
Rtcp
() {
29
~
Rtcp
() {}
31
// Resets the
RTCP
statistics, and sets the first received sequence number.
34
// Updates the
RTCP
statistics with a new received packet.
37
// Returns the current
RTCP
statistics. If |no_reset| is true, the statistics
54
RTC_DISALLOW_COPY_AND_ASSIGN(
Rtcp
);
/external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
conference_transport.h
39
// reflector, which exchanges
RTCP
with local channels. For simplicity, it
90
* Gets
RTCP
statistics of the stream with specified ID.
108
enum Type { Rtp,
Rtcp
, } type_;
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.h
50
StorePacket(Packet::
Rtcp
, data, len);
71
enum Type { Rtp,
Rtcp
, } type;
125
// TODO(pbos): Add
RTCP
SSRC muxing/demuxing if anything requires it.
137
case Packet::
Rtcp
:
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.cc
81
// Generates an
RTCP
packet.
82
RtpStream::RtcpPacket* RtpStream::
Rtcp
(int64_t time_now_us) {
86
RtcpPacket*
rtcp
= new RtcpPacket;
local
88
rtcp
->timestamp = rtp_timestamp_offset_ + static_cast<uint32_t>(
90
rtcp
->ntp_secs = send_time_us / 1000000;
91
rtcp
->ntp_frac = static_cast<int64_t>((send_time_us % 1000000) *
93
rtcp
->ssrc = ssrc_;
95
return
rtcp
;
208
0)); //
RTCP
receive time.
459
0)); //
RTCP
receive time
[
all
...]
Completed in 803 milliseconds