summaryrefslogtreecommitdiff
path: root/voice_engine/include/voe_audio_processing.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 08:31:39 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 08:31:39 +0000
commitca7a9a2696d2f73f543241093c4faeb4c608678c (patch)
treeb969d7ef21236b1d25347c156f96836440db7ca2 /voice_engine/include/voe_audio_processing.h
parentee6f8a27fd52a1843cd0d4df570b91b8fd542b82 (diff)
downloadwebrtc-ca7a9a2696d2f73f543241093c4faeb4c608678c.tar.gz
Remove const for plain data types in voice_engine/
BUG=1644 R=henrikg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1463004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4018 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/include/voe_audio_processing.h')
-rw-r--r--voice_engine/include/voe_audio_processing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/voice_engine/include/voe_audio_processing.h b/voice_engine/include/voe_audio_processing.h
index 4965d331..cc62eb90 100644
--- a/voice_engine/include/voe_audio_processing.h
+++ b/voice_engine/include/voe_audio_processing.h
@@ -83,7 +83,7 @@ public:
// Sets the AGC configuration.
// Should only be used in situations where the working environment
// is well known.
- virtual int SetAgcConfig(const AgcConfig config) = 0;
+ virtual int SetAgcConfig(AgcConfig config) = 0;
// Gets the AGC configuration.
virtual int GetAgcConfig(AgcConfig& config) = 0;
@@ -152,7 +152,7 @@ public:
// Modifies the AGC configuration on the receiving side for the
// specified |channel|.
- virtual int SetRxAgcConfig(int channel, const AgcConfig config) = 0;
+ virtual int SetRxAgcConfig(int channel, AgcConfig config) = 0;
// Gets the AGC configuration on the receiving side.
virtual int GetRxAgcConfig(int channel, AgcConfig& config) = 0;