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

Unified Diff: webrtc/voice_engine/include/voe_rtp_rtcp.h

Issue 2055753002: VoERTP_RTCP: Remove GetREDStatus and SetREDStatus (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove-red
Patch Set: rebase Created 4 years, 4 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/voice_engine/test/cmd_test/voe_cmd_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/include/voe_rtp_rtcp.h
diff --git a/webrtc/voice_engine/include/voe_rtp_rtcp.h b/webrtc/voice_engine/include/voe_rtp_rtcp.h
index dd3609aa00b4372464e8620262efe21deeced9dc..e344d0488c62053a2238daa694033177d88df19a 100644
--- a/webrtc/voice_engine/include/voe_rtp_rtcp.h
+++ b/webrtc/voice_engine/include/voe_rtp_rtcp.h
@@ -187,20 +187,6 @@ class WEBRTC_DLLEXPORT VoERTP_RTCP {
int channel,
std::vector<ReportBlock>* receive_blocks) = 0;
- // Sets the Redundant Coding (RED) status on a specific |channel|.
- // TODO(minyue): Make SetREDStatus() pure virtual when fakewebrtcvoiceengine
- // in talk is ready.
- virtual int SetREDStatus(int channel, bool enable, int redPayloadtype = -1) {
- return -1;
- }
-
- // Gets the RED status on a specific |channel|.
- // TODO(minyue): Make GetREDStatus() pure virtual when fakewebrtcvoiceengine
- // in talk is ready.
- virtual int GetREDStatus(int channel, bool& enabled, int& redPayloadtype) {
- return -1;
- }
-
// This function enables Negative Acknowledgment (NACK) using RTCP,
// implemented based on RFC 4585. NACK retransmits RTP packets if lost on
// the network. This creates a lossless transport at the expense of delay.
« no previous file with comments | « no previous file | webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698