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

Unified Diff: webrtc/media/engine/simulcast.h

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback Created 4 years, 9 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/media/base/videoengine_unittest.h ('k') | webrtc/media/engine/simulcast.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/engine/simulcast.h
diff --git a/webrtc/media/engine/simulcast.h b/webrtc/media/engine/simulcast.h
index 20be4c487e443f5b20bc0e051d2931817590ca84..f6b269f8867d4ce814dbceb269143efaa368c513 100644
--- a/webrtc/media/engine/simulcast.h
+++ b/webrtc/media/engine/simulcast.h
@@ -14,6 +14,7 @@
#include <vector>
#include "webrtc/base/basictypes.h"
+#include "webrtc/base/optional.h"
#include "webrtc/config.h"
namespace cricket {
@@ -45,12 +46,13 @@ int GetTotalMaxBitrateBps(const std::vector<webrtc::VideoStream>& streams);
void GetSimulcastSsrcs(const StreamParams& sp, std::vector<uint32_t>* ssrcs);
// Get simulcast settings.
-std::vector<webrtc::VideoStream> GetSimulcastConfig(size_t max_streams,
- int width,
- int height,
- int max_bitrate_bps,
- int max_qp,
- int max_framerate);
+std::vector<webrtc::VideoStream> GetSimulcastConfig(
+ size_t max_streams,
+ int width,
+ int height,
+ rtc::Optional<int> max_bitrate_bps,
+ int max_qp,
+ int max_framerate);
} // namespace cricket
« no previous file with comments | « webrtc/media/base/videoengine_unittest.h ('k') | webrtc/media/engine/simulcast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698