Delete internal getter methods from RtpRtcpInterface
Methods deleted: StorePackets, RtcpXrRrtrStatus. They are now private methods on the two implementations. Bug: None Change-Id: If68e8f1e8ba233302e24e0cdb6bf7c1b0c9f330f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/194322 Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32670}
This commit is contained in:
@ -150,7 +150,6 @@ class MockRtpRtcpInterface : public RtpRtcpInterface {
|
|||||||
(),
|
(),
|
||||||
(const, override));
|
(const, override));
|
||||||
MOCK_METHOD(void, SetRtcpXrRrtrStatus, (bool enable), (override));
|
MOCK_METHOD(void, SetRtcpXrRrtrStatus, (bool enable), (override));
|
||||||
MOCK_METHOD(bool, RtcpXrRrtrStatus, (), (const, override));
|
|
||||||
MOCK_METHOD(void,
|
MOCK_METHOD(void,
|
||||||
SetRemb,
|
SetRemb,
|
||||||
(int64_t bitrate, std::vector<uint32_t> ssrcs),
|
(int64_t bitrate, std::vector<uint32_t> ssrcs),
|
||||||
@ -168,7 +167,6 @@ class MockRtpRtcpInterface : public RtpRtcpInterface {
|
|||||||
SetStorePacketsStatus,
|
SetStorePacketsStatus,
|
||||||
(bool enable, uint16_t number_to_store),
|
(bool enable, uint16_t number_to_store),
|
||||||
(override));
|
(override));
|
||||||
MOCK_METHOD(bool, StorePackets, (), (const, override));
|
|
||||||
MOCK_METHOD(void,
|
MOCK_METHOD(void,
|
||||||
SendCombinedRtcpPacket,
|
SendCombinedRtcpPacket,
|
||||||
(std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets),
|
(std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets),
|
||||||
|
@ -238,8 +238,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp, public RTCPReceiver::ModuleRtpRtcp {
|
|||||||
// requests.
|
// requests.
|
||||||
void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
|
void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
|
||||||
|
|
||||||
bool StorePackets() const override;
|
|
||||||
|
|
||||||
void SendCombinedRtcpPacket(
|
void SendCombinedRtcpPacket(
|
||||||
std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets) override;
|
std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets) override;
|
||||||
|
|
||||||
@ -252,8 +250,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp, public RTCPReceiver::ModuleRtpRtcp {
|
|||||||
// (XR) Receiver reference time report.
|
// (XR) Receiver reference time report.
|
||||||
void SetRtcpXrRrtrStatus(bool enable) override;
|
void SetRtcpXrRrtrStatus(bool enable) override;
|
||||||
|
|
||||||
bool RtcpXrRrtrStatus() const override;
|
|
||||||
|
|
||||||
// Video part.
|
// Video part.
|
||||||
int32_t SendLossNotification(uint16_t last_decoded_seq_num,
|
int32_t SendLossNotification(uint16_t last_decoded_seq_num,
|
||||||
uint16_t last_received_seq_num,
|
uint16_t last_received_seq_num,
|
||||||
@ -326,6 +322,12 @@ class ModuleRtpRtcpImpl : public RtpRtcp, public RTCPReceiver::ModuleRtpRtcp {
|
|||||||
|
|
||||||
bool TimeToSendFullNackList(int64_t now) const;
|
bool TimeToSendFullNackList(int64_t now) const;
|
||||||
|
|
||||||
|
// Returns true if the module is configured to store packets.
|
||||||
|
bool StorePackets() const;
|
||||||
|
|
||||||
|
// Returns current Receiver Reference Time Report (RTTR) status.
|
||||||
|
bool RtcpXrRrtrStatus() const;
|
||||||
|
|
||||||
std::unique_ptr<RtpSenderContext> rtp_sender_;
|
std::unique_ptr<RtpSenderContext> rtp_sender_;
|
||||||
|
|
||||||
RTCPSender rtcp_sender_;
|
RTCPSender rtcp_sender_;
|
||||||
|
@ -231,16 +231,12 @@ class ModuleRtpRtcpImpl2 final : public RtpRtcpInterface,
|
|||||||
// requests.
|
// requests.
|
||||||
void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
|
void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
|
||||||
|
|
||||||
bool StorePackets() const override;
|
|
||||||
|
|
||||||
void SendCombinedRtcpPacket(
|
void SendCombinedRtcpPacket(
|
||||||
std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets) override;
|
std::vector<std::unique_ptr<rtcp::RtcpPacket>> rtcp_packets) override;
|
||||||
|
|
||||||
// (XR) Receiver reference time report.
|
// (XR) Receiver reference time report.
|
||||||
void SetRtcpXrRrtrStatus(bool enable) override;
|
void SetRtcpXrRrtrStatus(bool enable) override;
|
||||||
|
|
||||||
bool RtcpXrRrtrStatus() const override;
|
|
||||||
|
|
||||||
// Video part.
|
// Video part.
|
||||||
int32_t SendLossNotification(uint16_t last_decoded_seq_num,
|
int32_t SendLossNotification(uint16_t last_decoded_seq_num,
|
||||||
uint16_t last_received_seq_num,
|
uint16_t last_received_seq_num,
|
||||||
@ -292,6 +288,12 @@ class ModuleRtpRtcpImpl2 final : public RtpRtcpInterface,
|
|||||||
// check if we need to send RTCP report, send TMMBR updates and fire events.
|
// check if we need to send RTCP report, send TMMBR updates and fire events.
|
||||||
void PeriodicUpdate();
|
void PeriodicUpdate();
|
||||||
|
|
||||||
|
// Returns true if the module is configured to store packets.
|
||||||
|
bool StorePackets() const;
|
||||||
|
|
||||||
|
// Returns current Receiver Reference Time Report (RTTR) status.
|
||||||
|
bool RtcpXrRrtrStatus() const;
|
||||||
|
|
||||||
TaskQueueBase* const worker_queue_;
|
TaskQueueBase* const worker_queue_;
|
||||||
RTC_NO_UNIQUE_ADDRESS SequenceChecker process_thread_checker_;
|
RTC_NO_UNIQUE_ADDRESS SequenceChecker process_thread_checker_;
|
||||||
|
|
||||||
|
@ -320,12 +320,6 @@ TEST_F(RtpRtcpImpl2Test, Rtt) {
|
|||||||
EXPECT_NEAR(2 * kOneWayNetworkDelayMs, sender_.impl_->rtt_ms(), 1);
|
EXPECT_NEAR(2 * kOneWayNetworkDelayMs, sender_.impl_->rtt_ms(), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(RtpRtcpImpl2Test, SetRtcpXrRrtrStatus) {
|
|
||||||
EXPECT_FALSE(receiver_.impl_->RtcpXrRrtrStatus());
|
|
||||||
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
|
||||||
EXPECT_TRUE(receiver_.impl_->RtcpXrRrtrStatus());
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_F(RtpRtcpImpl2Test, RttForReceiverOnly) {
|
TEST_F(RtpRtcpImpl2Test, RttForReceiverOnly) {
|
||||||
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
||||||
|
|
||||||
|
@ -308,12 +308,6 @@ TEST_F(RtpRtcpImplTest, Rtt) {
|
|||||||
EXPECT_NEAR(2 * kOneWayNetworkDelayMs, sender_.impl_->rtt_ms(), 1);
|
EXPECT_NEAR(2 * kOneWayNetworkDelayMs, sender_.impl_->rtt_ms(), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(RtpRtcpImplTest, SetRtcpXrRrtrStatus) {
|
|
||||||
EXPECT_FALSE(receiver_.impl_->RtcpXrRrtrStatus());
|
|
||||||
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
|
||||||
EXPECT_TRUE(receiver_.impl_->RtcpXrRrtrStatus());
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_F(RtpRtcpImplTest, RttForReceiverOnly) {
|
TEST_F(RtpRtcpImplTest, RttForReceiverOnly) {
|
||||||
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
receiver_.impl_->SetRtcpXrRrtrStatus(true);
|
||||||
|
|
||||||
|
@ -372,9 +372,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
|||||||
// (XR) Sets Receiver Reference Time Report (RTTR) status.
|
// (XR) Sets Receiver Reference Time Report (RTTR) status.
|
||||||
virtual void SetRtcpXrRrtrStatus(bool enable) = 0;
|
virtual void SetRtcpXrRrtrStatus(bool enable) = 0;
|
||||||
|
|
||||||
// Returns current Receiver Reference Time Report (RTTR) status.
|
|
||||||
virtual bool RtcpXrRrtrStatus() const = 0;
|
|
||||||
|
|
||||||
// (REMB) Receiver Estimated Max Bitrate.
|
// (REMB) Receiver Estimated Max Bitrate.
|
||||||
// Schedules sending REMB on next and following sender/receiver reports.
|
// Schedules sending REMB on next and following sender/receiver reports.
|
||||||
void SetRemb(int64_t bitrate_bps, std::vector<uint32_t> ssrcs) override = 0;
|
void SetRemb(int64_t bitrate_bps, std::vector<uint32_t> ssrcs) override = 0;
|
||||||
@ -399,9 +396,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
|||||||
// requests.
|
// requests.
|
||||||
virtual void SetStorePacketsStatus(bool enable, uint16_t numberToStore) = 0;
|
virtual void SetStorePacketsStatus(bool enable, uint16_t numberToStore) = 0;
|
||||||
|
|
||||||
// Returns true if the module is configured to store packets.
|
|
||||||
virtual bool StorePackets() const = 0;
|
|
||||||
|
|
||||||
virtual void SetVideoBitrateAllocation(
|
virtual void SetVideoBitrateAllocation(
|
||||||
const VideoBitrateAllocation& bitrate) = 0;
|
const VideoBitrateAllocation& bitrate) = 0;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user