• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Multichannel downmix effect library
2package {
3    default_applicable_licenses: [
4        "frameworks_av_media_libeffects_downmix_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_downmix_license",
12    visibility: [":__subpackages__"],
13    license_kinds: [
14        "SPDX-license-identifier-Apache-2.0",
15    ],
16    license_text: [
17        "NOTICE",
18    ],
19}
20
21cc_library {
22    name: "libdownmix",
23    host_supported: true,
24    vendor: true,
25    srcs: ["EffectDownmix.cpp"],
26
27    shared_libs: [
28        "libaudioutils",
29        "libcutils",
30        "liblog",
31    ],
32
33    relative_install_path: "soundfx",
34
35    cflags: [
36        "-fvisibility=hidden",
37        "-Wall",
38        "-Werror",
39    ],
40
41    header_libs: [
42        "libaudioeffects",
43        "libhardware_headers",
44    ],
45}
46