summaryrefslogtreecommitdiffstats
path: root/media/libeffects/downmix
diff options
context:
space:
mode:
authorsynergydev <synergye@codefi.re>2013-10-19 22:51:33 -0700
committersynergydev <synergye@codefi.re>2013-10-19 22:57:43 -0700
commitc9d8ea7f8f9a1ca8ecd266695e3cac423790b2f9 (patch)
treeba266ce44ccdc60775b8f91e6b33a05b3c207f89 /media/libeffects/downmix
parent0219856e5e45c0bdd20f2199297ec92f11f0875f (diff)
downloadframeworks_av-c9d8ea7f8f9a1ca8ecd266695e3cac423790b2f9.zip
frameworks_av-c9d8ea7f8f9a1ca8ecd266695e3cac423790b2f9.tar.gz
frameworks_av-c9d8ea7f8f9a1ca8ecd266695e3cac423790b2f9.tar.bz2
libeffects: do not use GNU old-style field designators
Not using a GNU extension improves portability Change-Id: I4e8a0376c089828ca4fc7f1aaf3914bfd917d4c5
Diffstat (limited to 'media/libeffects/downmix')
-rw-r--r--media/libeffects/downmix/EffectDownmix.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/media/libeffects/downmix/EffectDownmix.c b/media/libeffects/downmix/EffectDownmix.c
index f17a6e8..f779876 100644
--- a/media/libeffects/downmix/EffectDownmix.c
+++ b/media/libeffects/downmix/EffectDownmix.c
@@ -61,13 +61,13 @@ const struct effect_interface_s gDownmixInterface = {
// 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 : "Downmix Library",
- implementor : "The Android Open Source Project",
- create_effect : DownmixLib_Create,
- release_effect : DownmixLib_Release,
- get_descriptor : DownmixLib_GetDescriptor,
+ .tag = AUDIO_EFFECT_LIBRARY_TAG,
+ .version = EFFECT_LIBRARY_API_VERSION,
+ .name = "Downmix Library",
+ .implementor = "The Android Open Source Project",
+ .create_effect = DownmixLib_Create,
+ .release_effect = DownmixLib_Release,
+ .get_descriptor = DownmixLib_GetDescriptor,
};