summaryrefslogtreecommitdiffstats
path: root/media/libeffects/lvm
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/lvm
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/lvm')
-rw-r--r--media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp6
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;