summaryrefslogtreecommitdiffstats
path: root/media/libeffects/testlibs/EffectReverb.c
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-01-30 07:40:52 -0800
committerGlenn Kasten <gkasten@google.com>2012-02-08 09:21:39 -0800
commit5e92a7861196ddae14638d4b7a63fc4892b7ef59 (patch)
tree6772b944a26acb22381a2eb38871b46cff9d856a /media/libeffects/testlibs/EffectReverb.c
parent0a20fa9c41c96e31fa20e071074a4b6e7f6c41c3 (diff)
downloadframeworks_av-5e92a7861196ddae14638d4b7a63fc4892b7ef59.zip
frameworks_av-5e92a7861196ddae14638d4b7a63fc4892b7ef59.tar.gz
frameworks_av-5e92a7861196ddae14638d4b7a63fc4892b7ef59.tar.bz2
Effect UUID inputs passed by pointer are const
Change-Id: I1f5c338bcb7368e3dd8cd5f804b2e6d9fbe087f8
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 ebb72c1..8351712 100644
--- a/media/libeffects/testlibs/EffectReverb.c
+++ b/media/libeffects/testlibs/EffectReverb.c
@@ -111,7 +111,7 @@ int EffectQueryEffect(uint32_t index, effect_descriptor_t *pDescriptor) {
return 0;
}
-int EffectCreate(effect_uuid_t *uuid,
+int EffectCreate(const effect_uuid_t *uuid,
int32_t sessionId,
int32_t ioId,
effect_handle_t *pHandle) {
@@ -182,7 +182,7 @@ int EffectRelease(effect_handle_t handle) {
return 0;
}
-int EffectGetDescriptor(effect_uuid_t *uuid,
+int EffectGetDescriptor(const effect_uuid_t *uuid,
effect_descriptor_t *pDescriptor) {
int i;
int length = sizeof(gDescriptors) / sizeof(const effect_descriptor_t *);