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.

28 lines
464 B

// Multichannel downmix effect library
cc_library_shared {
name: "libdownmix",
vendor: true,
srcs: ["EffectDownmix.c"],
shared_libs: [
"libaudioutils",
"libcutils",
"liblog",
],
relative_install_path: "soundfx",
cflags: [
"-DBUILD_FLOAT",
"-fvisibility=hidden",
"-Wall",
"-Werror",
],
header_libs: [
"libaudioeffects",
"libhardware_headers",
],
}