Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78541148 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 33425f66: am d497b648: am 1f95555c: Merge "libeffects: do not use GNU...

am 33425f66: am d497b648: am 1f95555c: Merge "libeffects: do not use GNU old-style field designators"

* commit '33425f66':
  libeffects: do not use GNU old-style field designators
parents b69e0c39 33425f66
Loading
Loading
Loading
Loading
+7 −7
Original line number Original line Diff line number Diff line
@@ -453,13 +453,13 @@ const struct effect_interface_s gLEInterface = {
// This is the only symbol that needs to be exported
// This is the only symbol that needs to be exported
__attribute__ ((visibility ("default")))
__attribute__ ((visibility ("default")))
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
    tag : AUDIO_EFFECT_LIBRARY_TAG,
    .tag = AUDIO_EFFECT_LIBRARY_TAG,
    version : EFFECT_LIBRARY_API_VERSION,
    .version = EFFECT_LIBRARY_API_VERSION,
    name : "Loudness Enhancer Library",
    .name = "Loudness Enhancer Library",
    implementor : "The Android Open Source Project",
    .implementor = "The Android Open Source Project",
    create_effect : LELib_Create,
    .create_effect = LELib_Create,
    release_effect : LELib_Release,
    .release_effect = LELib_Release,
    get_descriptor : LELib_GetDescriptor,
    .get_descriptor = LELib_GetDescriptor,
};
};


}; // extern "C"
}; // extern "C"
+7 −7
Original line number Original line Diff line number Diff line
@@ -329,11 +329,11 @@ int Effect_getDescriptor(effect_handle_t self,


__attribute__ ((visibility ("default")))
__attribute__ ((visibility ("default")))
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
    tag : AUDIO_EFFECT_LIBRARY_TAG,
    .tag = AUDIO_EFFECT_LIBRARY_TAG,
    version : EFFECT_LIBRARY_API_VERSION,
    .version = EFFECT_LIBRARY_API_VERSION,
    name : "Effect Proxy",
    .name = "Effect Proxy",
    implementor : "AOSP",
    .implementor = "AOSP",
    create_effect : android::EffectProxyCreate,
    .create_effect = android::EffectProxyCreate,
    release_effect : android::EffectProxyRelease,
    .release_effect = android::EffectProxyRelease,
    get_descriptor : android::EffectProxyGetDescriptor,
    .get_descriptor = android::EffectProxyGetDescriptor,
};
};