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@6262 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/voice_engine/voe_codec_impl.h b/webrtc/voice_engine/voe_codec_impl.h
index 6757695..1b9f00e 100644
--- a/webrtc/voice_engine/voe_codec_impl.h
+++ b/webrtc/voice_engine/voe_codec_impl.h
@@ -40,6 +40,10 @@
 
     virtual int GetRecPayloadType(int channel, CodecInst& codec);
 
+    virtual int SetFECStatus(int channel, bool enable);
+
+    virtual int GetFECStatus(int channel, bool& enabled);
+
     virtual int SetVADStatus(int channel,
                              bool enable,
                              VadModes mode = kVadConventional,