mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
audio: Add support for dumping info from effect HAL modules
The implementation uses IBase::debug() method which can write debugging info into the provided file descriptor (same model as used for devices and streams). Bug: 69939533 Test: adb shell dumpsys media.audio_flinger Change-Id: I7876fd43a7066c0f081ea2ca0b3b4b37bbdf8e6c
This commit is contained in:
@@ -173,6 +173,10 @@ Return<Result> VirtualizerEffect::close() {
|
||||
return mEffect->close();
|
||||
}
|
||||
|
||||
Return<void> VirtualizerEffect::debug(const hidl_handle& fd, const hidl_vec<hidl_string>& options) {
|
||||
return mEffect->debug(fd, options);
|
||||
}
|
||||
|
||||
// Methods from ::android::hardware::audio::effect::CPP_VERSION::IVirtualizerEffect follow.
|
||||
Return<bool> VirtualizerEffect::isStrengthSupported() {
|
||||
bool halSupported = false;
|
||||
|
||||
Reference in New Issue
Block a user