diff options
author | Eric Laurent <elaurent@google.com> | 2010-07-28 05:40:18 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2010-07-28 05:49:21 -0700 |
commit | a4c72acfbc6c06588dd26cf41e67a834fc0a54f9 (patch) | |
tree | f837332558eb9f5bcec50e109878f7d98a644148 /media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp | |
parent | b73045935cd8ec5d1a1c5e7a7ca800448b5789ea (diff) | |
download | frameworks_base-a4c72acfbc6c06588dd26cf41e67a834fc0a54f9.zip frameworks_base-a4c72acfbc6c06588dd26cf41e67a834fc0a54f9.tar.gz frameworks_base-a4c72acfbc6c06588dd26cf41e67a834fc0a54f9.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/lvm/wrapper/Bundle/EffectBundle.cpp')
-rw-r--r-- | media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp b/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp index 4440447..4c3ebca 100644 --- a/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp +++ b/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp @@ -2348,10 +2348,10 @@ extern "C" int Effect_process(effect_interface_t self, /* Effect Control Interface Implementation: Command */ extern "C" int Effect_command(effect_interface_t self, - int cmdCode, - int cmdSize, + uint32_t cmdCode, + uint32_t cmdSize, void *pCmdData, - int *replySize, + uint32_t *replySize, void *pReplyData){ EffectContext * pContext = (EffectContext *) self; int retsize; |