mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
During this conversion, the functionality of the V7 wrapper hasn't been tested yet. This will be done in a separate CL that will also include required updates to the VTS tests. Since the changes were made to the code shared with pre-V7 versions, verified that V6 HAL didn't regress. Bug: 142480271 Test: atest VtsHalAudioEffectV6_0TargetTest Test: m VtsHalAudioEffectV7_0TargetTest Test: m android.hardware.audio@7.0-service.example Change-Id: I72389c8d564596bef22b47dfdcb2e77d636ef0a3
121 lines
3.3 KiB
Plaintext
121 lines
3.3 KiB
Plaintext
cc_defaults {
|
|
name: "android.hardware.audio.effect-impl_default",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
srcs: [
|
|
"AcousticEchoCancelerEffect.cpp",
|
|
"AudioBufferManager.cpp",
|
|
"AutomaticGainControlEffect.cpp",
|
|
"BassBoostEffect.cpp",
|
|
"Conversions.cpp",
|
|
"DownmixEffect.cpp",
|
|
"Effect.cpp",
|
|
"EffectsFactory.cpp",
|
|
"EnvironmentalReverbEffect.cpp",
|
|
"EqualizerEffect.cpp",
|
|
"LoudnessEnhancerEffect.cpp",
|
|
"NoiseSuppressionEffect.cpp",
|
|
"PresetReverbEffect.cpp",
|
|
"VirtualizerEffect.cpp",
|
|
"VisualizerEffect.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libeffects",
|
|
"libfmq",
|
|
"libhidlbase",
|
|
"libhidlmemory",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.audio.common-util",
|
|
"android.hidl.memory@1.0",
|
|
],
|
|
|
|
header_libs: [
|
|
"android.hardware.audio.common.util@all-versions",
|
|
"libaudio_system_headers",
|
|
"libaudioclient_headers",
|
|
"libeffects_headers",
|
|
"libhardware_headers",
|
|
"libmedia_headers",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@2.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.audio.common@2.0-util",
|
|
"android.hardware.audio.effect@2.0",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=2",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@4.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@4.0",
|
|
"android.hardware.audio.common@4.0-util",
|
|
"android.hardware.audio.effect@4.0",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=4",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@5.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@5.0",
|
|
"android.hardware.audio.common@5.0-util",
|
|
"android.hardware.audio.effect@5.0",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=5",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@6.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@6.0",
|
|
"android.hardware.audio.common@6.0-util",
|
|
"android.hardware.audio.effect@6.0",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=6",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@7.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@7.0",
|
|
"android.hardware.audio.common@7.0-util",
|
|
"android.hardware.audio.effect@7.0",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=7",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|