Home | History | Annotate | Download | only in loudness
      1 // LoudnessEnhancer library
      2 cc_library_shared {
      3     name: "libldnhncr",
      4 
      5     vendor: true,
      6     srcs: [
      7         "EffectLoudnessEnhancer.cpp",
      8         "dsp/core/dynamic_range_compression.cpp",
      9     ],
     10 
     11     cflags: [
     12         "-O2",
     13         "-fvisibility=hidden",
     14 
     15         "-Wall",
     16         "-Werror",
     17     ],
     18 
     19     shared_libs: [
     20         "libcutils",
     21         "liblog",
     22     ],
     23 
     24     relative_install_path: "soundfx",
     25 
     26     header_libs: ["libaudioeffects"],
     27 }
     28