HomeSort by relevance Sort by last modified time
    Searched full:remb (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/webrtc/webrtc/video/
vie_remb.h 34 // Called to add a receive channel to include in the REMB packet.
37 // Removes the specified channel from REMB estimate.
40 // Called to add a module that can generate and send REMB RTCP.
43 // Removes a REMB RTCP sender.
50 // group. This call will trigger a new RTCP REMB packet if the bitrate
51 // estimate has decreased or if no RTCP REMB packet has been sent for
63 // The last time a REMB was sent.
67 // All RtpRtcp modules to include in the REMB packet.
70 // All modules that can send REMB RTCP.
vie_remb.cc 27 // % threshold for if we should send a new REMB asap.
108 // last report. Send a REMB asap.
128 // Send a REMB packet.
vie_remb_unittest.cc 62 // Lower bitrate to send another REMB packet.
178 // Decrease estimate to trigger a REMB.
184 // Remove the sending module, add it again -> should get remb on the second
228 // Only register receiving modules and make sure we fallback to trigger a REMB
246 // Lower the estimate to trigger a new packet REMB packet.
video_receive_stream.cc 82 ss << ", remb: " << (remb ? "on" : "off");
201 congestion_controller_->SetChannelRembStatus(false, config_.rtp.remb,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
m32r2.s 64 .global remb
65 remb: label
66 remb fp,fp
m32r2.d 46 0+0044 <remb>:
47 44: 9d 2d 00 18 remb fp,fp
  /external/webrtc/webrtc/call/
bitrate_allocator_unittest.cc 122 // High REMB.
126 // Low REMB.
153 // High REMB. Make sure the controllers get a fair share of the surplus
163 // High REMB, but below the sum of min bitrates.
171 // Low REMB.
202 // Low REMB. Verify that all observers still get their respective min bitrate.
rampup_tests.cc 122 bool remb; local
125 remb = true;
130 remb = false;
135 remb = true;
155 recv_config.rtp.remb = remb;
rtc_event_log.proto 141 optional bool remb = 4;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_format_remb_unittest.cc 108 EXPECT_FALSE(rtcp_sender_->REMB());
110 EXPECT_TRUE(rtcp_sender_->REMB());
112 EXPECT_FALSE(rtcp_sender_->REMB());
rtcp_packet_unittest.cc 30 using webrtc::rtcp::Remb;
327 TEST(RtcpPacketTest, Remb) {
328 Remb remb; local
329 remb.From(kSenderSsrc);
330 remb.AppliesTo(kRemoteSsrc);
331 remb.AppliesTo(kRemoteSsrc + 1);
332 remb.AppliesTo(kRemoteSsrc + 2);
333 remb.WithBitrateBps(261011);
335 rtc::scoped_ptr<RawPacket> packet(remb.Build())
    [all...]
rtcp_sender.cc 245 bool RTCPSender::REMB() const {
263 // Send a REMB immediately if we have a new REMB. The frequency of REMBs is
596 rtcp::Remb* remb = new rtcp::Remb(); local
597 remb->From(ssrc_);
599 remb->AppliesTo(ssrc);
600 remb->WithBitrateBps(remb_bitrate_);
603 "RTCPSender::REMB");
    [all...]
rtcp_sender.h 126 bool REMB() const;
247 // REMB
rtp_rtcp_impl.h 188 // (REMB) Receiver Estimated Max Bitrate.
189 bool REMB() const override;
rtcp_packet.h 356 // Receiver Estimated Max Bitrate (REMB) (draft-alvestrand-rmcat-remb).
375 class Remb : public RtcpPacket {
377 Remb() : RtcpPacket() {
382 virtual ~Remb() {}
409 RTC_DISALLOW_COPY_AND_ASSIGN(Remb);
  /external/webrtc/webrtc/modules/bitrate_controller/
send_side_bandwidth_estimation_unittest.cc 30 // Initial REMB applies immediately.
39 // Second REMB doesn't apply immediately.
bitrate_controller_unittest.cc 104 // First REMB applies immediately.
116 // Receive a high remb, test bitrate inc.
165 // Test that a low REMB trigger immediately.
258 // Test that a low REMB trigger immediately.
259 // We don't care which bandwidth observer that delivers the REMB.
288 // Receive a high REMB, test bitrate increase.
send_side_bandwidth_estimation.h 35 // Call when we receive a RTCP message with TMMBR or REMB.
bitrate_controller_impl.cc 29 // Received RTCP REMB or TMMBR.
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator.gypi 90 'test/estimators/remb.cc',
91 'test/estimators/remb.h',
remote_bitrate_estimator_single_stream.cc 85 // automatically cleaned up when we have one RemoteBitrateEstimator per REMB
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
remb.cc 13 #include "webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h"
107 BWE_TEST_LOGGING_CONTEXT("Remb");
  /external/webrtc/webrtc/
video_receive_stream.h 105 // See draft-alvestrand-rmcat-remb for information.
106 bool remb = false; member in struct:webrtc::VideoReceiveStream::Config::Rtp
  /external/webrtc/talk/media/base/
constants.cc 92 const char kRtcpFbParamRemb[] = "goog-remb";
constants.h 108 // http://tools.ietf.org/html/draft-alvestrand-rmcat-remb-00

Completed in 451 milliseconds

1 2 3