Merge "Fix cts Pre/post Processing failures on Cuttlefish aidl" into main am: 48415986d9 am: 29e06e20a0 am: 622dc28c6d

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2794102

Change-Id: I91394b2e77719d50373afe56833227fc75407b61
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Shunkai Yao 2023-10-19 01:22:57 +00:00 committed by Automerger Merge Worker
commit 0208a2df48
3 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@ const Descriptor AcousticEchoCancelerSw::kDescriptor = {
.common = {.id = {.type = getEffectTypeUuidAcousticEchoCanceler(), .common = {.id = {.type = getEffectTypeUuidAcousticEchoCanceler(),
.uuid = getEffectImplUuidAcousticEchoCancelerSw(), .uuid = getEffectImplUuidAcousticEchoCancelerSw(),
.proxy = std::nullopt}, .proxy = std::nullopt},
.flags = {.type = Flags::Type::INSERT, .flags = {.type = Flags::Type::PRE_PROC,
.insert = Flags::Insert::FIRST, .insert = Flags::Insert::FIRST,
.volume = Flags::Volume::CTRL}, .volume = Flags::Volume::CTRL},
.name = AcousticEchoCancelerSw::kEffectName, .name = AcousticEchoCancelerSw::kEffectName,

View file

@ -93,7 +93,7 @@ const Descriptor DynamicsProcessingSw::kDescriptor = {
.common = {.id = {.type = getEffectTypeUuidDynamicsProcessing(), .common = {.id = {.type = getEffectTypeUuidDynamicsProcessing(),
.uuid = getEffectImplUuidDynamicsProcessingSw(), .uuid = getEffectImplUuidDynamicsProcessingSw(),
.proxy = std::nullopt}, .proxy = std::nullopt},
.flags = {.type = Flags::Type::INSERT, .flags = {.type = Flags::Type::POST_PROC,
.insert = Flags::Insert::FIRST, .insert = Flags::Insert::FIRST,
.volume = Flags::Volume::CTRL}, .volume = Flags::Volume::CTRL},
.name = DynamicsProcessingSw::kEffectName, .name = DynamicsProcessingSw::kEffectName,

View file

@ -65,7 +65,7 @@ const Descriptor NoiseSuppressionSw::kDescriptor = {
.common = {.id = {.type = getEffectTypeUuidNoiseSuppression(), .common = {.id = {.type = getEffectTypeUuidNoiseSuppression(),
.uuid = getEffectImplUuidNoiseSuppressionSw(), .uuid = getEffectImplUuidNoiseSuppressionSw(),
.proxy = std::nullopt}, .proxy = std::nullopt},
.flags = {.type = Flags::Type::INSERT, .flags = {.type = Flags::Type::PRE_PROC,
.insert = Flags::Insert::FIRST, .insert = Flags::Insert::FIRST,
.volume = Flags::Volume::CTRL}, .volume = Flags::Volume::CTRL},
.name = NoiseSuppressionSw::kEffectName, .name = NoiseSuppressionSw::kEffectName,