Home
last modified time | relevance | path

Searched refs:RtcEventBweUpdateLossBased (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/logging/rtc_event_log/events/
Drtc_event_bwe_update_loss_based.cc17 RtcEventBweUpdateLossBased::RtcEventBweUpdateLossBased(int32_t bitrate_bps, in RtcEventBweUpdateLossBased() function in webrtc::RtcEventBweUpdateLossBased
24 RtcEventBweUpdateLossBased::RtcEventBweUpdateLossBased( in RtcEventBweUpdateLossBased() function in webrtc::RtcEventBweUpdateLossBased
25 const RtcEventBweUpdateLossBased& other) in RtcEventBweUpdateLossBased()
31 RtcEventBweUpdateLossBased::~RtcEventBweUpdateLossBased() = default;
33 std::unique_ptr<RtcEventBweUpdateLossBased> RtcEventBweUpdateLossBased::Copy() in Copy()
35 return absl::WrapUnique<RtcEventBweUpdateLossBased>( in Copy()
36 new RtcEventBweUpdateLossBased(*this)); in Copy()
Drtc_event_bwe_update_loss_based.h48 class RtcEventBweUpdateLossBased final : public RtcEvent {
52 RtcEventBweUpdateLossBased(int32_t bitrate_bps_,
55 ~RtcEventBweUpdateLossBased() override;
60 std::unique_ptr<RtcEventBweUpdateLossBased> Copy() const;
80 RtcEventBweUpdateLossBased(const RtcEventBweUpdateLossBased& other);
/external/webrtc/logging/rtc_event_log/encoder/
Drtc_event_log_encoder_legacy.h34 class RtcEventBweUpdateLossBased; variable
76 std::string EncodeBweUpdateLossBased(const RtcEventBweUpdateLossBased& event);
Drtc_event_log_encoder_new_format.h37 class RtcEventBweUpdateLossBased; variable
90 rtc::ArrayView<const RtcEventBweUpdateLossBased*> batch,
Drtc_event_log_encoder_new_format.cc687 std::vector<const RtcEventBweUpdateLossBased*> bwe_loss_based_updates; in EncodeBatch()
756 static_cast<const RtcEventBweUpdateLossBased* const>(it->get()); in EncodeBatch()
1223 rtc::ArrayView<const RtcEventBweUpdateLossBased*> batch, in EncodeBweUpdateLossBased()
1229 const RtcEventBweUpdateLossBased* const base_event = batch[0]; in EncodeBweUpdateLossBased()
1247 const RtcEventBweUpdateLossBased* event = batch[i + 1]; in EncodeBweUpdateLossBased()
1257 const RtcEventBweUpdateLossBased* event = batch[i + 1]; in EncodeBweUpdateLossBased()
1267 const RtcEventBweUpdateLossBased* event = batch[i + 1]; in EncodeBweUpdateLossBased()
1277 const RtcEventBweUpdateLossBased* event = batch[i + 1]; in EncodeBweUpdateLossBased()
Drtc_event_log_encoder_v3.cc88 RtcEventBweUpdateLossBased::Encode; in RtcEventLogEncoderV3()
Drtc_event_log_encoder_legacy.cc297 auto& rtc_event = static_cast<const RtcEventBweUpdateLossBased&>(event); in Encode()
497 const RtcEventBweUpdateLossBased& event) { in EncodeBweUpdateLossBased()
Drtc_event_log_encoder_unittest.cc497 TEST_P(RtcEventLogEncoderTest, RtcEventBweUpdateLossBased) { in TEST_P() argument
498 std::vector<std::unique_ptr<RtcEventBweUpdateLossBased>> events(event_count_); in TEST_P()
/external/webrtc/modules/congestion_controller/goog_cc/
Dsend_side_bandwidth_estimation_unittest.cc26 auto bwe_event = static_cast<RtcEventBweUpdateLossBased*>(arg);
34 auto bwe_event = static_cast<RtcEventBweUpdateLossBased*>(arg);
Dsend_side_bandwidth_estimation.cc649 event_log_->Log(std::make_unique<RtcEventBweUpdateLossBased>( in MaybeLogLossBasedEvent()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_unittest_helper.h73 std::unique_ptr<RtcEventBweUpdateLossBased> NewBweUpdateLossBased();
173 const RtcEventBweUpdateLossBased& original_event,
Drtc_event_log_unittest_helper.cc128 std::unique_ptr<RtcEventBweUpdateLossBased>
136 return std::make_unique<RtcEventBweUpdateLossBased>( in NewBweUpdateLossBased()
841 const RtcEventBweUpdateLossBased& original_event, in VerifyLoggedBweLossBasedUpdate()
Drtc_event_log_unittest.cc166 std::vector<std::unique_ptr<RtcEventBweUpdateLossBased>> bwe_loss_list_;
Drtc_event_log_parser.cc1475 RtcEventBweUpdateLossBased::Parse(event_fields, batched, in ParseStreamInternalV3()