Remove const for plain data types in common_audio/

BUG=1644
R=tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1464005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4019 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org
2013-05-14 09:24:49 +00:00
parent 9213521ea9
commit 8e3b594831
6 changed files with 14 additions and 14 deletions

View File

@ -879,13 +879,13 @@ void WebRtcSpl_ResetResample8khzTo22khz(WebRtcSpl_State8khzTo22khz* state);
******************************************************************/
void WebRtcSpl_Resample48khzTo32khz(const int32_t* In, int32_t* Out,
const int32_t K);
int32_t K);
void WebRtcSpl_Resample32khzTo24khz(const int32_t* In, int32_t* Out,
const int32_t K);
int32_t K);
void WebRtcSpl_Resample44khzTo32khz(const int32_t* In, int32_t* Out,
const int32_t K);
int32_t K);
/*******************************************************************
* resample_48khz.c
@ -955,7 +955,7 @@ void WebRtcSpl_ResetResample8khzTo48khz(WebRtcSpl_State8khzTo48khz* state);
*
******************************************************************/
void WebRtcSpl_DownsampleBy2(const int16_t* in, const int16_t len,
void WebRtcSpl_DownsampleBy2(const int16_t* in, int16_t len,
int16_t* out, int32_t* filtState);
void WebRtcSpl_UpsampleBy2(const int16_t* in, int16_t len,