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

Unified Diff: webrtc/voice_engine/voe_rtp_rtcp_impl.cc

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 | « webrtc/voice_engine/voe_rtp_rtcp_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/voe_rtp_rtcp_impl.cc
diff --git a/webrtc/voice_engine/voe_rtp_rtcp_impl.cc b/webrtc/voice_engine/voe_rtp_rtcp_impl.cc
index 8f3fcb6d9fd06770bffd9832edbcc5d0d5b5387f..2a7359737a478b8670da4484615f2e9c7296b0c2 100644
--- a/webrtc/voice_engine/voe_rtp_rtcp_impl.cc
+++ b/webrtc/voice_engine/voe_rtp_rtcp_impl.cc
@@ -359,25 +359,6 @@ int VoERTP_RTCPImpl::GetRemoteRTCPReportBlocks(
return channel_ptr->GetRemoteRTCPReportBlocks(report_blocks);
}
-int VoERTP_RTCPImpl::SetREDStatus(int channel,
- bool enable,
- int redPayloadtype) {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "SetREDStatus(channel=%d, enable=%d, redPayloadtype=%d)",
- channel, enable, redPayloadtype);
- _shared->SetLastError(VE_FUNC_NOT_SUPPORTED, kTraceError,
- "SetREDStatus() RED is not supported");
- return -1;
-}
-
-int VoERTP_RTCPImpl::GetREDStatus(int channel,
- bool& enabled,
- int& redPayloadtype) {
- _shared->SetLastError(VE_FUNC_NOT_SUPPORTED, kTraceError,
- "GetREDStatus() RED is not supported");
- return -1;
-}
-
int VoERTP_RTCPImpl::SetNACKStatus(int channel, bool enable, int maxNoPackets) {
WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
"SetNACKStatus(channel=%d, enable=%d, maxNoPackets=%d)", channel,
« no previous file with comments | « webrtc/voice_engine/voe_rtp_rtcp_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698