You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
887 B
46 lines
887 B
// Multichannel downmix effect library
|
|
package {
|
|
default_applicable_licenses: [
|
|
"frameworks_av_media_libeffects_downmix_license",
|
|
],
|
|
}
|
|
|
|
// Added automatically by a large-scale-change
|
|
// See: http://go/android-license-faq
|
|
license {
|
|
name: "frameworks_av_media_libeffects_downmix_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: [
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
],
|
|
license_text: [
|
|
"NOTICE",
|
|
],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libdownmix",
|
|
host_supported: true,
|
|
vendor: true,
|
|
srcs: ["EffectDownmix.cpp"],
|
|
|
|
shared_libs: [
|
|
"libaudioutils",
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
|
|
relative_install_path: "soundfx",
|
|
|
|
cflags: [
|
|
"-fvisibility=hidden",
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
header_libs: [
|
|
"libaudioeffects",
|
|
"libhardware_headers",
|
|
],
|
|
}
|