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

Unified Diff: webrtc/config.h

Issue 2621573002: Remove FlexfecConfig and replace with specific struct in VideoSendStream. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 | « 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 e0883e671d0ffb35e885f605ae8f8fbd1b39f083..22b279c418972393492349f5526bec676cf42f29 100644
--- a/webrtc/config.h
+++ b/webrtc/config.h
@@ -56,28 +56,6 @@ struct UlpfecConfig {
int red_rtx_payload_type;
};
-// Settings for FlexFEC forward error correction.
-// Set the payload type to '-1' to disable.
-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;
-
- // SSRC of FlexFEC stream.
- uint32_t flexfec_ssrc;
-
- // Vector containing a single element, corresponding to the SSRC of the media
- // stream being protected by this FlexFEC stream. The vector MUST have size 1.
- //
- // TODO(brandtr): Update comment above when we support multistream protection.
- std::vector<uint32_t> protected_media_ssrcs;
-};
-
// RTP header extension, see RFC 5285.
struct RtpExtension {
RtpExtension() : id(0) {}
« 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