summaryrefslogtreecommitdiff
path: root/voice_engine/voe_base_impl.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/voe_base_impl.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/voe_base_impl.h')
-rw-r--r--voice_engine/voe_base_impl.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/voice_engine/voe_base_impl.h b/voice_engine/voe_base_impl.h
index 9d89733e..230e750e 100644
--- a/voice_engine/voe_base_impl.h
+++ b/voice_engine/voe_base_impl.h
@@ -73,26 +73,26 @@ public:
// AudioTransport
virtual int32_t
RecordedDataIsAvailable(const void* audioSamples,
- const uint32_t nSamples,
- const uint8_t nBytesPerSample,
- const uint8_t nChannels,
- const uint32_t samplesPerSec,
- const uint32_t totalDelayMS,
- const int32_t clockDrift,
- const uint32_t currentMicLevel,
- const bool keyPressed,
+ uint32_t nSamples,
+ uint8_t nBytesPerSample,
+ uint8_t nChannels,
+ uint32_t samplesPerSec,
+ uint32_t totalDelayMS,
+ int32_t clockDrift,
+ uint32_t currentMicLevel,
+ bool keyPressed,
uint32_t& newMicLevel);
- virtual int32_t NeedMorePlayData(const uint32_t nSamples,
- const uint8_t nBytesPerSample,
- const uint8_t nChannels,
- const uint32_t samplesPerSec,
+ virtual int32_t NeedMorePlayData(uint32_t nSamples,
+ uint8_t nBytesPerSample,
+ uint8_t nChannels,
+ uint32_t samplesPerSec,
void* audioSamples,
uint32_t& nSamplesOut);
// AudioDeviceObserver
- virtual void OnErrorIsReported(const ErrorCode error);
- virtual void OnWarningIsReported(const WarningCode warning);
+ virtual void OnErrorIsReported(ErrorCode error);
+ virtual void OnWarningIsReported(WarningCode warning);
protected:
VoEBaseImpl(voe::SharedData* shared);