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

Unified Diff: webrtc/video/vie_remb.h

Issue 1663413003: Clean up of CongestionController. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase. Created 4 years, 10 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
« no previous file with comments | « webrtc/video/video_send_stream.cc ('k') | webrtc/video/vie_remb.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_remb.h
diff --git a/webrtc/video/vie_remb.h b/webrtc/video/vie_remb.h
index 1508209995bd2e94b15fd24d6bba400821346fd1..39dbc85311090d8fdcfc243246f9c372183034f7 100644
--- a/webrtc/video/vie_remb.h
+++ b/webrtc/video/vie_remb.h
@@ -51,8 +51,8 @@ class VieRemb : public RemoteBitrateObserver {
// estimate has decreased or if no RTCP REMB packet has been sent for
// a certain time interval.
// Implements RtpReceiveBitrateUpdate.
- virtual void OnReceiveBitrateChanged(const std::vector<unsigned int>& ssrcs,
- unsigned int bitrate);
+ virtual void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs,
+ uint32_t bitrate);
private:
typedef std::list<RtpRtcp*> RtpModules;
@@ -62,7 +62,7 @@ class VieRemb : public RemoteBitrateObserver {
// The last time a REMB was sent.
int64_t last_remb_time_;
- unsigned int last_send_bitrate_;
+ uint32_t last_send_bitrate_;
// All RtpRtcp modules to include in the REMB packet.
RtpModules receive_modules_;
@@ -71,7 +71,7 @@ class VieRemb : public RemoteBitrateObserver {
RtpModules rtcp_sender_;
// The last bitrate update.
- unsigned int bitrate_;
+ uint32_t bitrate_;
};
} // namespace webrtc
« no previous file with comments | « webrtc/video/video_send_stream.cc ('k') | webrtc/video/vie_remb.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698