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

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

am 7bc597c3: Merge "Visualizer: do not use GNU old-style field designators"

* commit '7bc597c3':
  Visualizer: do not use GNU old-style field designators
parents 3f6b86a5 7bc597c3
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -1231,11 +1231,11 @@ const struct effect_interface_s effect_interface = {

__attribute__ ((visibility ("default")))
audio_effect_library_t AUDIO_EFFECT_LIBRARY_INFO_SYM = {
    tag : AUDIO_EFFECT_LIBRARY_TAG,
    version : EFFECT_LIBRARY_API_VERSION,
    name : "Visualizer Library",
    implementor : "The Android Open Source Project",
    create_effect : effect_lib_create,
    release_effect : effect_lib_release,
    get_descriptor : effect_lib_get_descriptor,
    .tag = AUDIO_EFFECT_LIBRARY_TAG,
    .version = EFFECT_LIBRARY_API_VERSION,
    .name = "Visualizer Library",
    .implementor = "The Android Open Source Project",
    .create_effect = effect_lib_create,
    .release_effect = effect_lib_release,
    .get_descriptor = effect_lib_get_descriptor,
};