summaryrefslogtreecommitdiffstats
path: root/media/libeffects/testlibs/EffectReverb.c
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2010-07-28 05:40:18 -0700
committerEric Laurent <elaurent@google.com>2010-07-28 05:49:21 -0700
commit25f4395b932fa9859a6e91ba77c5d20d009da64a (patch)
tree01098a211d6c782708b840c28ebd396a6eb72a7b /media/libeffects/testlibs/EffectReverb.c
parent23e1de74359f4bb1763aef0adfebe073122b032c (diff)
downloadframeworks_av-25f4395b932fa9859a6e91ba77c5d20d009da64a.zip
frameworks_av-25f4395b932fa9859a6e91ba77c5d20d009da64a.tar.gz
frameworks_av-25f4395b932fa9859a6e91ba77c5d20d009da64a.tar.bz2
Audio effects: modified command() parameter types.
The type of the cmd, cmdSize and *pReplySize parameters of the effect control interface command() function have been modified from int to uint32_t. This is more consistent with their role. Change-Id: I84d289fc262d6753747910f06f485597dfee6591
Diffstat (limited to 'media/libeffects/testlibs/EffectReverb.c')
-rw-r--r--media/libeffects/testlibs/EffectReverb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libeffects/testlibs/EffectReverb.c b/media/libeffects/testlibs/EffectReverb.c
index 3f9069f..3eb8b2c 100644
--- a/media/libeffects/testlibs/EffectReverb.c
+++ b/media/libeffects/testlibs/EffectReverb.c
@@ -270,8 +270,8 @@ static int Reverb_Process(effect_interface_t self, audio_buffer_t *inBuffer, aud
}
-static int Reverb_Command(effect_interface_t self, int cmdCode, int cmdSize,
- void *pCmdData, int *replySize, void *pReplyData) {
+static int Reverb_Command(effect_interface_t self, uint32_t cmdCode, uint32_t cmdSize,
+ void *pCmdData, uint32_t *replySize, void *pReplyData) {
reverb_module_t *pRvbModule = (reverb_module_t *) self;
reverb_object_t *pReverb;
int retsize;