summaryrefslogtreecommitdiff
path: root/voice_engine/voe_rtp_rtcp_impl.h
diff options
context:
space:
mode:
authorminyue@webrtc.org <minyue@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-28 09:52:06 +0000
committerminyue@webrtc.org <minyue@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-28 09:52:06 +0000
commitdd671dea7a51c5db5e15123acac599e89f9be201 (patch)
tree52d6b028731dca68d0f610908a08185f1a441ad4 /voice_engine/voe_rtp_rtcp_impl.h
parentff6b4a8eddca609ad2691b54f443b6f1e9342579 (diff)
downloadwebrtc-dd671dea7a51c5db5e15123acac599e89f9be201.tar.gz
This CL is to adding feedback of packet loss rate to encoder in voice engine. A direct reason for doing it is to make use of Opus FEC, which can adapt itself to changes in the packet loss rate.
This CL is going to be combined with another CL in ACM, which is to be landed. TEST=passed_try_bots BUG= R=stefan@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/13449004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6262 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/voe_rtp_rtcp_impl.h')
-rw-r--r--voice_engine/voe_rtp_rtcp_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/voice_engine/voe_rtp_rtcp_impl.h b/voice_engine/voe_rtp_rtcp_impl.h
index ddb0170f..c73fcdd2 100644
--- a/voice_engine/voe_rtp_rtcp_impl.h
+++ b/voice_engine/voe_rtp_rtcp_impl.h
@@ -73,12 +73,12 @@ public:
virtual int GetRemoteRTCPReportBlocks(
int channel, std::vector<ReportBlock>* report_blocks);
- // FEC
- virtual int SetFECStatus(int channel,
+ // RED
+ virtual int SetREDStatus(int channel,
bool enable,
int redPayloadtype = -1);
- virtual int GetFECStatus(int channel, bool& enabled, int& redPayloadtype);
+ virtual int GetREDStatus(int channel, bool& enabled, int& redPayloadtype);
//NACK
virtual int SetNACKStatus(int channel,