HomeSort by relevance Sort by last modified time
    Searched defs:Rtcp (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/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 DISALLOW_COPY_AND_ASSIGN(Rtcp);
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.h 44 StorePacket(Packet::Rtcp, channel, data, len);
50 enum Type { Rtp, Rtcp, } type;
101 case Packet::Rtcp:
  /external/chromium_org/media/cast/rtcp/
rtcp.cc 5 #include "media/cast/rtcp/rtcp.h"
12 #include "media/cast/rtcp/rtcp_defines.h"
13 #include "media/cast/rtcp/rtcp_receiver.h"
14 #include "media/cast/rtcp/rtcp_sender.h"
15 #include "media/cast/rtcp/rtcp_utility.h"
26 explicit LocalRtcpRttFeedback(Rtcp* rtcp) : rtcp_(rtcp) {}
36 Rtcp* rtcp_
    [all...]
rtcp.h 20 #include "media/cast/rtcp/receiver_rtcp_event_subscriber.h"
21 #include "media/cast/rtcp/rtcp_defines.h"
56 class Rtcp {
58 // Rtcp accepts two transports, one to be used by Cast senders
61 Rtcp(scoped_refptr<CastEnvironment> cast_environment,
73 virtual ~Rtcp();
81 // Send a RTCP sender report.
88 // provided the RTCP receiver report will append a Cast message containing
89 // Acks and Nacks; if |rtcp_events| is provided the RTCP receiver report
200 DISALLOW_COPY_AND_ASSIGN(Rtcp);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.cc 79 // Generates an RTCP packet.
80 RtpStream::RtcpPacket* RtpStream::Rtcp(int64_t time_now_us) {
84 RtcpPacket* rtcp = new RtcpPacket; local
86 rtcp->timestamp = rtp_timestamp_offset_ + static_cast<uint32_t>(
88 rtcp->ntp_secs = send_time_us / 1000000;
89 rtcp->ntp_frac = static_cast<int64_t>((send_time_us % 1000000) *
91 rtcp->ssrc = ssrc_;
93 return rtcp;
206 0)); // RTCP receive time.
456 0)); // RTCP receive time
    [all...]

Completed in 935 milliseconds