/* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_TAG "AGC_Effect_HAL" #include "AutomaticGainControlEffect.h" #include #include "VersionUtils.h" namespace android { namespace hardware { namespace audio { namespace effect { namespace CPP_VERSION { namespace implementation { AutomaticGainControlEffect::AutomaticGainControlEffect(effect_handle_t handle) : mEffect(new Effect(handle)) {} AutomaticGainControlEffect::~AutomaticGainControlEffect() {} void AutomaticGainControlEffect::propertiesFromHal( const t_agc_settings& halProperties, IAutomaticGainControlEffect::AllProperties* properties) { properties->targetLevelMb = halProperties.targetLevel; properties->compGainMb = halProperties.compGain; properties->limiterEnabled = halProperties.limiterEnabled; } void AutomaticGainControlEffect::propertiesToHal( const IAutomaticGainControlEffect::AllProperties& properties, t_agc_settings* halProperties) { halProperties->targetLevel = properties.targetLevelMb; halProperties->compGain = properties.compGainMb; halProperties->limiterEnabled = properties.limiterEnabled; } // Methods from ::android::hardware::audio::effect::CPP_VERSION::IEffect follow. Return AutomaticGainControlEffect::init() { return mEffect->init(); } Return AutomaticGainControlEffect::setConfig( const EffectConfig& config, const sp& inputBufferProvider, const sp& outputBufferProvider) { return mEffect->setConfig(config, inputBufferProvider, outputBufferProvider); } Return AutomaticGainControlEffect::reset() { return mEffect->reset(); } Return AutomaticGainControlEffect::enable() { return mEffect->enable(); } Return AutomaticGainControlEffect::disable() { return mEffect->disable(); } Return AutomaticGainControlEffect::setDevice(AudioDeviceBitfield device) { return mEffect->setDevice(device); } Return AutomaticGainControlEffect::setAndGetVolume(const hidl_vec& volumes, setAndGetVolume_cb _hidl_cb) { return mEffect->setAndGetVolume(volumes, _hidl_cb); } Return AutomaticGainControlEffect::volumeChangeNotification( const hidl_vec& volumes) { return mEffect->volumeChangeNotification(volumes); } Return AutomaticGainControlEffect::setAudioMode(AudioMode mode) { return mEffect->setAudioMode(mode); } Return AutomaticGainControlEffect::setConfigReverse( const EffectConfig& config, const sp& inputBufferProvider, const sp& outputBufferProvider) { return mEffect->setConfigReverse(config, inputBufferProvider, outputBufferProvider); } Return AutomaticGainControlEffect::setInputDevice(AudioDeviceBitfield device) { return mEffect->setInputDevice(device); } Return AutomaticGainControlEffect::getConfig(getConfig_cb _hidl_cb) { return mEffect->getConfig(_hidl_cb); } Return AutomaticGainControlEffect::getConfigReverse(getConfigReverse_cb _hidl_cb) { return mEffect->getConfigReverse(_hidl_cb); } Return AutomaticGainControlEffect::getSupportedAuxChannelsConfigs( uint32_t maxConfigs, getSupportedAuxChannelsConfigs_cb _hidl_cb) { return mEffect->getSupportedAuxChannelsConfigs(maxConfigs, _hidl_cb); } Return AutomaticGainControlEffect::getAuxChannelsConfig(getAuxChannelsConfig_cb _hidl_cb) { return mEffect->getAuxChannelsConfig(_hidl_cb); } Return AutomaticGainControlEffect::setAuxChannelsConfig( const EffectAuxChannelsConfig& config) { return mEffect->setAuxChannelsConfig(config); } Return AutomaticGainControlEffect::setAudioSource(AudioSource source) { return mEffect->setAudioSource(source); } Return AutomaticGainControlEffect::offload(const EffectOffloadParameter& param) { return mEffect->offload(param); } Return AutomaticGainControlEffect::getDescriptor(getDescriptor_cb _hidl_cb) { return mEffect->getDescriptor(_hidl_cb); } Return AutomaticGainControlEffect::prepareForProcessing(prepareForProcessing_cb _hidl_cb) { return mEffect->prepareForProcessing(_hidl_cb); } Return AutomaticGainControlEffect::setProcessBuffers(const AudioBuffer& inBuffer, const AudioBuffer& outBuffer) { return mEffect->setProcessBuffers(inBuffer, outBuffer); } Return AutomaticGainControlEffect::command(uint32_t commandId, const hidl_vec& data, uint32_t resultMaxSize, command_cb _hidl_cb) { return mEffect->command(commandId, data, resultMaxSize, _hidl_cb); } Return AutomaticGainControlEffect::setParameter(const hidl_vec& parameter, const hidl_vec& value) { return mEffect->setParameter(parameter, value); } Return AutomaticGainControlEffect::getParameter(const hidl_vec& parameter, uint32_t valueMaxSize, getParameter_cb _hidl_cb) { return mEffect->getParameter(parameter, valueMaxSize, _hidl_cb); } Return AutomaticGainControlEffect::getSupportedConfigsForFeature( uint32_t featureId, uint32_t maxConfigs, uint32_t configSize, getSupportedConfigsForFeature_cb _hidl_cb) { return mEffect->getSupportedConfigsForFeature(featureId, maxConfigs, configSize, _hidl_cb); } Return AutomaticGainControlEffect::getCurrentConfigForFeature( uint32_t featureId, uint32_t configSize, getCurrentConfigForFeature_cb _hidl_cb) { return mEffect->getCurrentConfigForFeature(featureId, configSize, _hidl_cb); } Return AutomaticGainControlEffect::setCurrentConfigForFeature( uint32_t featureId, const hidl_vec& configData) { return mEffect->setCurrentConfigForFeature(featureId, configData); } Return AutomaticGainControlEffect::close() { return mEffect->close(); } Return AutomaticGainControlEffect::debug(const hidl_handle& fd, const hidl_vec& options) { return mEffect->debug(fd, options); } // Methods from ::android::hardware::audio::effect::CPP_VERSION::IAutomaticGainControlEffect // follow. Return AutomaticGainControlEffect::setTargetLevel(int16_t targetLevelMb) { return mEffect->setParam(AGC_PARAM_TARGET_LEVEL, targetLevelMb); } Return AutomaticGainControlEffect::getTargetLevel(getTargetLevel_cb _hidl_cb) { return mEffect->getIntegerParam(AGC_PARAM_TARGET_LEVEL, _hidl_cb); } Return AutomaticGainControlEffect::setCompGain(int16_t compGainMb) { return mEffect->setParam(AGC_PARAM_COMP_GAIN, compGainMb); } Return AutomaticGainControlEffect::getCompGain(getCompGain_cb _hidl_cb) { return mEffect->getIntegerParam(AGC_PARAM_COMP_GAIN, _hidl_cb); } Return AutomaticGainControlEffect::setLimiterEnabled(bool enabled) { return mEffect->setParam(AGC_PARAM_LIMITER_ENA, enabled); } Return AutomaticGainControlEffect::isLimiterEnabled(isLimiterEnabled_cb _hidl_cb) { return mEffect->getIntegerParam(AGC_PARAM_LIMITER_ENA, _hidl_cb); } Return AutomaticGainControlEffect::setAllProperties( const IAutomaticGainControlEffect::AllProperties& properties) { t_agc_settings halProperties; propertiesToHal(properties, &halProperties); return mEffect->setParam(AGC_PARAM_PROPERTIES, halProperties); } Return AutomaticGainControlEffect::getAllProperties(getAllProperties_cb _hidl_cb) { t_agc_settings halProperties; Result retval = mEffect->getParam(AGC_PARAM_PROPERTIES, halProperties); AllProperties properties; propertiesFromHal(halProperties, &properties); _hidl_cb(retval, properties); return Void(); } } // namespace implementation } // namespace CPP_VERSION } // namespace effect } // namespace audio } // namespace hardware } // namespace android