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

Unified Diff: webrtc/config.h

Issue 2511703002: Wire up FlexFEC in VideoEngine2. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « no previous file | webrtc/config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/config.h
diff --git a/webrtc/config.h b/webrtc/config.h
index 3b3c3d90a811234515dd0348fe44da8be153ff1d..ee81617d8d063b9a861c44e91e90593e912e1680 100644
--- a/webrtc/config.h
+++ b/webrtc/config.h
@@ -44,6 +44,8 @@ struct UlpfecConfig {
red_payload_type(-1),
red_rtx_payload_type(-1) {}
std::string ToString() const;
+ bool operator==(const UlpfecConfig& other) const;
+
// Payload type used for ULPFEC packets.
int ulpfec_payload_type;
@@ -60,6 +62,8 @@ struct FlexfecConfig {
FlexfecConfig();
~FlexfecConfig();
std::string ToString() const;
+ bool IsCompleteAndEnabled() const;
+ bool operator==(const FlexfecConfig& other) const;
// Payload type of FlexFEC.
int flexfec_payload_type;
« no previous file with comments | « no previous file | webrtc/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698