summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsynergydev <synergye@codefi.re>2013-10-19 22:28:40 -0700
committerArne Coucheron <arco68@gmail.com>2019-09-28 00:23:56 +0200
commit8c13aa1c4b59b9b0a90fde599341e15fb8cab332 (patch)
treea4c51db490b9d82a347084c8e83f1c5124f2d3b7
parent980efe51712aa18d6b433a2dbd30d5cf4a53ceef (diff)
downloadhardware_qcom_audio-8c13aa1c4b59b9b0a90fde599341e15fb8cab332.tar.gz
hardware_qcom_audio-8c13aa1c4b59b9b0a90fde599341e15fb8cab332.tar.bz2
hardware_qcom_audio-8c13aa1c4b59b9b0a90fde599341e15fb8cab332.zip
voice_processing: do not use GNU old-style field designators
Not using a GNU extension improves portability Change-Id: I732753d2efa19efb48312664c7a2155f78ceee35
-rw-r--r--voice_processing/voice_processing.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/voice_processing/voice_processing.c b/voice_processing/voice_processing.c
index 8485cce8..6a4cccbb 100644
--- a/voice_processing/voice_processing.c
+++ b/voice_processing/voice_processing.c
@@ -758,11 +758,11 @@ static int lib_get_descriptor(const effect_uuid_t *uuid,
// This is the only symbol that needs to be exported
__attribute__ ((visibility ("default")))
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
- tag : AUDIO_EFFECT_LIBRARY_TAG,
- version : EFFECT_LIBRARY_API_VERSION,
- name : "MSM8960 Audio Preprocessing Library",
- implementor : "The Android Open Source Project",
- create_effect : lib_create,
- release_effect : lib_release,
- get_descriptor : lib_get_descriptor
+ .tag = AUDIO_EFFECT_LIBRARY_TAG,
+ .version = EFFECT_LIBRARY_API_VERSION,
+ .name = "MSM8960 Audio Preprocessing Library",
+ .implementor = "The Android Open Source Project",
+ .create_effect = lib_create,
+ .release_effect = lib_release,
+ .get_descriptor = lib_get_descriptor
};