Corrected one error for Android build.

Also added iSAC in the default build in Android, to test any build errors in iSAC in platform build in buildbot.
Review URL: https://webrtc-codereview.appspot.com/684004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2505 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kma@webrtc.org 2012-07-10 21:37:49 +00:00
parent b95e9ca865
commit ff2f861c71
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,7 @@ MY_WEBRTC_ROOT_PATH := $(call my-dir)
include $(MY_WEBRTC_ROOT_PATH)/src/common_audio/resampler/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/common_audio/signal_processing/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/common_audio/vad/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_coding/codecs/iSAC/fix/source/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/aec/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/aecm/Android.mk
include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/agc/Android.mk

View File

@ -60,6 +60,9 @@ static void HighpassFilterFixDec32(
WebRtc_Word32 a2 = 0, b2 = 0;
WebRtc_Word32 state0 = state[0];
WebRtc_Word32 state1 = state[1];
#ifdef WEBRTC_ARCH_ARM_V7A
WebRtc_Word32* coeff_ptr = (WebRtc_Word32*) coeff;
#endif
for (k=0; k<len; k++) {
in = (WebRtc_Word32)io[k];