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

Unified Diff: webrtc/modules/remote_bitrate_estimator/bwe_defines.cc

Issue 2913793002: Address some violations of chromium-style. (Closed)
Patch Set: Add empty line. Created 3 years, 7 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/remote_bitrate_estimator/bwe_defines.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/bwe_defines.cc b/webrtc/modules/remote_bitrate_estimator/bwe_defines.cc
index 6c772120c8e16c69e9b26af18b60f73347e5e04c..106b70c258a1b08daa029605cd0aebdcdfdeba1d 100644
--- a/webrtc/modules/remote_bitrate_estimator/bwe_defines.cc
+++ b/webrtc/modules/remote_bitrate_estimator/bwe_defines.cc
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"
#include "webrtc/system_wrappers/include/field_trial.h"
namespace webrtc {
@@ -25,4 +26,15 @@ int GetMinBitrateBps() {
}
} // namespace congestion_controller
+
+RateControlInput::RateControlInput(
+ BandwidthUsage bw_state,
+ const rtc::Optional<uint32_t>& incoming_bitrate,
+ double noise_var)
+ : bw_state(bw_state),
+ incoming_bitrate(incoming_bitrate),
+ noise_var(noise_var) {}
+
+RateControlInput::~RateControlInput() = default;
+
} // namespace webrtc
« no previous file with comments | « webrtc/modules/pacing/packet_router.h ('k') | webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698