diff options
author | Eric Laurent <elaurent@google.com> | 2012-02-06 14:28:54 -0800 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2012-02-06 14:51:57 -0800 |
commit | c857958e8aa948809b2ddfcd322d08c87cfaa2c4 (patch) | |
tree | ebd8840d6ab60dc3b87d49f422b35bb1d27f001c /media/libeffects | |
parent | cb6831d7b6b9f5ef940e79e5dddc022f35d4b4c7 (diff) | |
download | frameworks_base-c857958e8aa948809b2ddfcd322d08c87cfaa2c4.zip frameworks_base-c857958e8aa948809b2ddfcd322d08c87cfaa2c4.tar.gz frameworks_base-c857958e8aa948809b2ddfcd322d08c87cfaa2c4.tar.bz2 |
Fix audio preprocessing library wrapper
Fixed bug in EFFECT_CMD_GET_CONFIG command handler in
webRTC audio processing library wrapper.
Change-Id: I1d2cefa00930e549607af8dc2cf27555da8d313f
Diffstat (limited to 'media/libeffects')
-rwxr-xr-x | media/libeffects/preprocessing/PreProcessing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libeffects/preprocessing/PreProcessing.cpp b/media/libeffects/preprocessing/PreProcessing.cpp index 9fd6764..f57179d 100755 --- a/media/libeffects/preprocessing/PreProcessing.cpp +++ b/media/libeffects/preprocessing/PreProcessing.cpp @@ -1298,7 +1298,7 @@ int PreProcessingFx_Command(effect_handle_t self, return -EINVAL; } - Session_GetConfig(effect->session, (effect_config_t *)pCmdData); + Session_GetConfig(effect->session, (effect_config_t *)pReplyData); break; case EFFECT_CMD_SET_CONFIG_REVERSE: |