summaryrefslogtreecommitdiffstats
path: root/include/hardware/audio_effect.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-01-30 11:26:28 -0800
committerGlenn Kasten <gkasten@google.com>2012-01-30 11:26:28 -0800
commit75a8b8f9492ab6746c7d4147a87d9e21c42b3a96 (patch)
tree9773299521d426bab30afb28d1f2a325906a22c3 /include/hardware/audio_effect.h
parentae2e42b2447d011bd6cf9d5b4413dd3557de0035 (diff)
downloadhardware_libhardware-75a8b8f9492ab6746c7d4147a87d9e21c42b3a96.zip
hardware_libhardware-75a8b8f9492ab6746c7d4147a87d9e21c42b3a96.tar.gz
hardware_libhardware-75a8b8f9492ab6746c7d4147a87d9e21c42b3a96.tar.bz2
Effect UUID inputs passed by pointer are const
Change-Id: I3ef6d83ae539aef32f2a251660b2e2f9646eace5
Diffstat (limited to 'include/hardware/audio_effect.h')
-rw-r--r--include/hardware/audio_effect.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware/audio_effect.h b/include/hardware/audio_effect.h
index 201cefb..39cbf83 100644
--- a/include/hardware/audio_effect.h
+++ b/include/hardware/audio_effect.h
@@ -945,7 +945,7 @@ typedef struct audio_effect_library_s {
// *pHandle: updated with the effect interface handle.
//
////////////////////////////////////////////////////////////////////////////////
- int32_t (*create_effect)(effect_uuid_t *uuid,
+ int32_t (*create_effect)(const effect_uuid_t *uuid,
int32_t sessionId,
int32_t ioId,
effect_handle_t *pHandle);
@@ -987,7 +987,7 @@ typedef struct audio_effect_library_s {
// *pDescriptor: updated with the effect descriptor.
//
////////////////////////////////////////////////////////////////////////////////
- int32_t (*get_descriptor)(effect_uuid_t *uuid,
+ int32_t (*get_descriptor)(const effect_uuid_t *uuid,
effect_descriptor_t *pDescriptor);
} audio_effect_library_t;