Home | History | Annotate | Download | only in default
      1 /*
      2  * Copyright (C) 2018 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef ANDROID_HARDWARE_AUDIO_EFFECT_ENVIRONMENTALREVERBEFFECT_H
     18 #define ANDROID_HARDWARE_AUDIO_EFFECT_ENVIRONMENTALREVERBEFFECT_H
     19 
     20 #include <system/audio_effects/effect_environmentalreverb.h>
     21 
     22 #include PATH(android/hardware/audio/effect/FILE_VERSION/IEnvironmentalReverbEffect.h)
     23 
     24 #include "Effect.h"
     25 
     26 #include <system/audio_effects/effect_environmentalreverb.h>
     27 
     28 #include <hidl/Status.h>
     29 
     30 #include <hidl/MQDescriptor.h>
     31 
     32 #include "VersionUtils.h"
     33 
     34 namespace android {
     35 namespace hardware {
     36 namespace audio {
     37 namespace effect {
     38 namespace CPP_VERSION {
     39 namespace implementation {
     40 
     41 using ::android::sp;
     42 using ::android::hardware::hidl_string;
     43 using ::android::hardware::hidl_vec;
     44 using ::android::hardware::Return;
     45 using ::android::hardware::Void;
     46 using namespace ::android::hardware::audio::common::CPP_VERSION;
     47 using namespace ::android::hardware::audio::effect::CPP_VERSION;
     48 
     49 struct EnvironmentalReverbEffect : public IEnvironmentalReverbEffect {
     50     explicit EnvironmentalReverbEffect(effect_handle_t handle);
     51 
     52     // Methods from ::android::hardware::audio::effect::CPP_VERSION::IEffect follow.
     53     Return<Result> init() override;
     54     Return<Result> setConfig(
     55         const EffectConfig& config, const sp<IEffectBufferProviderCallback>& inputBufferProvider,
     56         const sp<IEffectBufferProviderCallback>& outputBufferProvider) override;
     57     Return<Result> reset() override;
     58     Return<Result> enable() override;
     59     Return<Result> disable() override;
     60     Return<Result> setDevice(AudioDeviceBitfield device) override;
     61     Return<void> setAndGetVolume(const hidl_vec<uint32_t>& volumes,
     62                                  setAndGetVolume_cb _hidl_cb) override;
     63     Return<Result> volumeChangeNotification(const hidl_vec<uint32_t>& volumes) override;
     64     Return<Result> setAudioMode(AudioMode mode) override;
     65     Return<Result> setConfigReverse(
     66         const EffectConfig& config, const sp<IEffectBufferProviderCallback>& inputBufferProvider,
     67         const sp<IEffectBufferProviderCallback>& outputBufferProvider) override;
     68     Return<Result> setInputDevice(AudioDeviceBitfield device) override;
     69     Return<void> getConfig(getConfig_cb _hidl_cb) override;
     70     Return<void> getConfigReverse(getConfigReverse_cb _hidl_cb) override;
     71     Return<void> getSupportedAuxChannelsConfigs(
     72         uint32_t maxConfigs, getSupportedAuxChannelsConfigs_cb _hidl_cb) override;
     73     Return<void> getAuxChannelsConfig(getAuxChannelsConfig_cb _hidl_cb) override;
     74     Return<Result> setAuxChannelsConfig(const EffectAuxChannelsConfig& config) override;
     75     Return<Result> setAudioSource(AudioSource source) override;
     76     Return<Result> offload(const EffectOffloadParameter& param) override;
     77     Return<void> getDescriptor(getDescriptor_cb _hidl_cb) override;
     78     Return<void> prepareForProcessing(prepareForProcessing_cb _hidl_cb) override;
     79     Return<Result> setProcessBuffers(const AudioBuffer& inBuffer,
     80                                      const AudioBuffer& outBuffer) override;
     81     Return<void> command(uint32_t commandId, const hidl_vec<uint8_t>& data, uint32_t resultMaxSize,
     82                          command_cb _hidl_cb) override;
     83     Return<Result> setParameter(const hidl_vec<uint8_t>& parameter,
     84                                 const hidl_vec<uint8_t>& value) override;
     85     Return<void> getParameter(const hidl_vec<uint8_t>& parameter, uint32_t valueMaxSize,
     86                               getParameter_cb _hidl_cb) override;
     87     Return<void> getSupportedConfigsForFeature(uint32_t featureId, uint32_t maxConfigs,
     88                                                uint32_t configSize,
     89                                                getSupportedConfigsForFeature_cb _hidl_cb) override;
     90     Return<void> getCurrentConfigForFeature(uint32_t featureId, uint32_t configSize,
     91                                             getCurrentConfigForFeature_cb _hidl_cb) override;
     92     Return<Result> setCurrentConfigForFeature(uint32_t featureId,
     93                                               const hidl_vec<uint8_t>& configData) override;
     94     Return<Result> close() override;
     95     Return<void> debug(const hidl_handle& fd, const hidl_vec<hidl_string>& options) override;
     96 
     97     // Methods from
     98     // ::android::hardware::audio::effect::CPP_VERSION::IEnvironmentalReverbEffect follow.
     99     Return<Result> setBypass(bool bypass) override;
    100     Return<void> getBypass(getBypass_cb _hidl_cb) override;
    101     Return<Result> setRoomLevel(int16_t roomLevel) override;
    102     Return<void> getRoomLevel(getRoomLevel_cb _hidl_cb) override;
    103     Return<Result> setRoomHfLevel(int16_t roomHfLevel) override;
    104     Return<void> getRoomHfLevel(getRoomHfLevel_cb _hidl_cb) override;
    105     Return<Result> setDecayTime(uint32_t decayTime) override;
    106     Return<void> getDecayTime(getDecayTime_cb _hidl_cb) override;
    107     Return<Result> setDecayHfRatio(int16_t decayHfRatio) override;
    108     Return<void> getDecayHfRatio(getDecayHfRatio_cb _hidl_cb) override;
    109     Return<Result> setReflectionsLevel(int16_t reflectionsLevel) override;
    110     Return<void> getReflectionsLevel(getReflectionsLevel_cb _hidl_cb) override;
    111     Return<Result> setReflectionsDelay(uint32_t reflectionsDelay) override;
    112     Return<void> getReflectionsDelay(getReflectionsDelay_cb _hidl_cb) override;
    113     Return<Result> setReverbLevel(int16_t reverbLevel) override;
    114     Return<void> getReverbLevel(getReverbLevel_cb _hidl_cb) override;
    115     Return<Result> setReverbDelay(uint32_t reverbDelay) override;
    116     Return<void> getReverbDelay(getReverbDelay_cb _hidl_cb) override;
    117     Return<Result> setDiffusion(int16_t diffusion) override;
    118     Return<void> getDiffusion(getDiffusion_cb _hidl_cb) override;
    119     Return<Result> setDensity(int16_t density) override;
    120     Return<void> getDensity(getDensity_cb _hidl_cb) override;
    121     Return<Result> setAllProperties(
    122         const IEnvironmentalReverbEffect::AllProperties& properties) override;
    123     Return<void> getAllProperties(getAllProperties_cb _hidl_cb) override;
    124 
    125    private:
    126     sp<Effect> mEffect;
    127 
    128     virtual ~EnvironmentalReverbEffect();
    129 
    130     void propertiesFromHal(const t_reverb_settings& halProperties,
    131                            IEnvironmentalReverbEffect::AllProperties* properties);
    132     void propertiesToHal(const IEnvironmentalReverbEffect::AllProperties& properties,
    133                          t_reverb_settings* halProperties);
    134 };
    135 
    136 }  // namespace implementation
    137 }  // namespace CPP_VERSION
    138 }  // namespace effect
    139 }  // namespace audio
    140 }  // namespace hardware
    141 }  // namespace android
    142 
    143 #endif  // ANDROID_HARDWARE_AUDIO_EFFECT_ENVIRONMENTALREVERBEFFECT_H
    144