OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rtcp
(Results
1 - 8
of
8
) 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
);
rtcp.cc
11
#include "webrtc/modules/audio_coding/neteq/
rtcp
.h"
22
void
Rtcp
::Init(uint16_t start_sequence_number) {
33
void
Rtcp
::Update(const RTPHeader& rtp_header, uint32_t receive_timestamp) {
57
void
Rtcp
::GetStatistics(bool no_reset, RtcpStatistics* stats) {
neteq_impl.h
24
#include "webrtc/modules/audio_coding/neteq/
rtcp
.h"
153
// Writes the current
RTCP
statistics to |stats|. The statistics are reset
375
Rtcp
rtcp_ GUARDED_BY(crit_sect_);
/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.h
80
// Generates an
RTCP
packet.
81
RtcpPacket*
Rtcp
(int64_t time_now_us);
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
...]
/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_;
conference_transport.cc
117
StorePacket(Packet::
Rtcp
, data, len);
141
// This simulates the flow of RTP and
RTCP
packets. Complications like that
167
case Packet::
Rtcp
: {
Completed in 388 milliseconds