blob: bcd69472c5df0f83158209d4a55f56783900f064 [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// LoudnessEnhancer library
Bob Badour56786ac2021-02-25 15:24:36 -08002package {
3 default_applicable_licenses: [
4 "frameworks_av_media_libeffects_loudness_license",
5 ],
6}
7
8// Added automatically by a large-scale-change
9// See: http://go/android-license-faq
10license {
11 name: "frameworks_av_media_libeffects_loudness_license",
12 visibility: [":__subpackages__"],
13 license_kinds: [
14 "SPDX-license-identifier-Apache-2.0",
15 ],
16 license_text: [
17 "NOTICE",
18 ],
19}
20
Dan Willemsen154fce42018-11-16 23:15:45 -080021cc_library_shared {
22 name: "libldnhncr",
23
24 vendor: true,
25 srcs: [
26 "EffectLoudnessEnhancer.cpp",
27 "dsp/core/dynamic_range_compression.cpp",
28 ],
29
30 cflags: [
31 "-O2",
32 "-fvisibility=hidden",
33
34 "-Wall",
35 "-Werror",
36 ],
37
38 shared_libs: [
39 "libcutils",
40 "liblog",
41 ],
42
43 relative_install_path: "soundfx",
44
45 header_libs: ["libaudioeffects"],
46}