Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: webrtc/modules/bitrate_controller/bitrate_controller_impl.h

Issue 1932683002: Remove ViEEncoder::SetNetworkStatus (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@move_pacer
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/bitrate_controller/bitrate_controller_impl.h
diff --git a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
index 26a72dc4191dcc50ad810e00cd1fd11009890858..cb526c157bd9de052bedc0ad596fcea018b3e6c8 100644
--- a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
+++ b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
@@ -66,9 +66,9 @@ class BitrateControllerImpl : public BitrateController {
bool GetNetworkParameters(uint32_t* bitrate,
uint8_t* fraction_loss,
int64_t* rtt);
- // Updates |send_queue_full_| to |is_full| and returns true if this caused
- // |send_queue_full_| to be changed.
- bool UpdateSendQueueStatus(bool is_full);
+ // Updates |send_queue_ready_| to |is_ready| and returns true if this caused
+ // |send_queue_ready_| to be changed.
+ bool UpdateSendQueueStatus(bool is_ready);
void OnNetworkChanged(uint32_t bitrate,
uint8_t fraction_loss, // 0 - 255.
@@ -88,7 +88,7 @@ class BitrateControllerImpl : public BitrateController {
uint8_t last_fraction_loss_ GUARDED_BY(critsect_);
int64_t last_rtt_ms_ GUARDED_BY(critsect_);
uint32_t last_reserved_bitrate_bps_ GUARDED_BY(critsect_);
- bool send_queue_full_ GUARDED_BY(critsect_);
+ bool send_queue_ready_ GUARDED_BY(critsect_);
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(BitrateControllerImpl);
};
« no previous file with comments | « no previous file | webrtc/modules/bitrate_controller/bitrate_controller_impl.cc » ('j') | webrtc/modules/pacing/paced_sender.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698