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.
61 lines
1.2 KiB
61 lines
1.2 KiB
// audio preprocessing wrapper
|
|
package {
|
|
default_applicable_licenses: [
|
|
"frameworks_av_media_libeffects_preprocessing_license",
|
|
],
|
|
}
|
|
|
|
// Added automatically by a large-scale-change
|
|
// See: http://go/android-license-faq
|
|
license {
|
|
name: "frameworks_av_media_libeffects_preprocessing_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: [
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
],
|
|
license_text: [
|
|
"NOTICE",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libaudiopreprocessing-defaults",
|
|
vendor: true,
|
|
host_supported: true,
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wno-unused-parameter",
|
|
],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
|
|
static_libs: [
|
|
"webrtc_audio_processing",
|
|
],
|
|
|
|
header_libs: [
|
|
"libaudioeffects",
|
|
"libhardware_headers",
|
|
],
|
|
target: {
|
|
darwin: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_library {
|
|
name: "libaudiopreprocessing",
|
|
defaults: ["libaudiopreprocessing-defaults"],
|
|
relative_install_path: "soundfx",
|
|
srcs: ["PreProcessing.cpp"],
|
|
header_libs: [
|
|
"libwebrtc_absl_headers",
|
|
],
|
|
}
|