OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:REMB
(Results
1 - 8
of
8
) sorted by null
/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_sender.h
126
bool
REMB
() const;
247
//
REMB
rtp_rtcp_impl.h
188
// (
REMB
) Receiver Estimated Max Bitrate.
189
bool
REMB
() const override;
rtcp_sender_unittest.cc
514
EXPECT_TRUE(rtcp_sender_->
REMB
());
519
//
REMB
should be included in each compound packet.
531
EXPECT_FALSE(rtcp_sender_->
REMB
());
rtp_rtcp_impl.cc
642
// (
REMB
) Receiver Estimated Max Bitrate.
643
bool ModuleRtpRtcpImpl::
REMB
() const {
644
return rtcp_sender_.
REMB
();
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
...]
/external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp.h
485
* (
REMB
) Receiver Estimated Max Bitrate
487
virtual bool
REMB
() const = 0;
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/
mock_rtp_rtcp.h
192
MOCK_CONST_METHOD0(
REMB
,
Completed in 231 milliseconds