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_VIRTUALIZEREFFECT_H
     18 #define ANDROID_HARDWARE_AUDIO_EFFECT_VIRTUALIZEREFFECT_H
     19 
     20 #include PATH(android/hardware/audio/effect/FILE_VERSION/IVirtualizerEffect.h)
     21 
     22 #include "Effect.h"
     23 
     24 #include <hidl/Status.h>
     25 
     26 #include <hidl/MQDescriptor.h>
     27 
     28 #include "VersionUtils.h"
     29 
     30 namespace android {
     31 namespace hardware {
     32 namespace audio {
     33 namespace effect {
     34 namespace CPP_VERSION {
     35 namespace implementation {
     36 
     37 using ::android::sp;
     38 using ::android::hardware::hidl_string;
     39 using ::android::hardware::hidl_vec;
     40 using ::android::hardware::Return;
     41 using ::android::hardware::Void;
     42 using ::android::hardware::audio::common::CPP_VERSION::implementation::AudioChannelBitfield;
     43 using namespace ::android::hardware::audio::common::CPP_VERSION;
     44 using namespace ::android::hardware::audio::effect::CPP_VERSION;
     45 
     46 struct VirtualizerEffect : public IVirtualizerEffect {
     47     explicit VirtualizerEffect(effect_handle_t handle);
     48 
     49     // Methods from ::android::hardware::audio::effect::CPP_VERSION::IEffect follow.
     50     Return<Result> init() override;
     51     Return<Result> setConfig(
     52         const EffectConfig& config, const sp<IEffectBufferProviderCallback>& inputBufferProvider,
     53         const sp<IEffectBufferProviderCallback>& outputBufferProvider) override;
     54     Return<Result> reset() override;
     55     Return<Result> enable() override;
     56     Return<Result> disable() override;
     57     Return<Result> setDevice(AudioDeviceBitfield device) override;
     58     Return<void> setAndGetVolume(const hidl_vec<uint32_t>& volumes,
     59                                  setAndGetVolume_cb _hidl_cb) override;
     60     Return<Result> volumeChangeNotification(const hidl_vec<uint32_t>& volumes) override;
     61     Return<Result> setAudioMode(AudioMode mode) override;
     62     Return<Result> setConfigReverse(
     63         const EffectConfig& config, const sp<IEffectBufferProviderCallback>& inputBufferProvider,
     64         const sp<IEffectBufferProviderCallback>& outputBufferProvider) override;
     65     Return<Result> setInputDevice(AudioDeviceBitfield device) override;
     66     Return<void> getConfig(getConfig_cb _hidl_cb) override;
     67     Return<void> getConfigReverse(getConfigReverse_cb _hidl_cb) override;
     68     Return<void> getSupportedAuxChannelsConfigs(
     69         uint32_t maxConfigs, getSupportedAuxChannelsConfigs_cb _hidl_cb) override;
     70     Return<void> getAuxChannelsConfig(getAuxChannelsConfig_cb _hidl_cb) override;
     71     Return<Result> setAuxChannelsConfig(const EffectAuxChannelsConfig& config) override;
     72     Return<Result> setAudioSource(AudioSource source) override;
     73     Return<Result> offload(const EffectOffloadParameter& param) override;
     74     Return<void> getDescriptor(getDescriptor_cb _hidl_cb) override;
     75     Return<void> prepareForProcessing(prepareForProcessing_cb _hidl_cb) override;
     76     Return<Result> setProcessBuffers(const AudioBuffer& inBuffer,
     77                                      const AudioBuffer& outBuffer) override;
     78     Return<void> command(uint32_t commandId, const hidl_vec<uint8_t>& data, uint32_t resultMaxSize,
     79                          command_cb _hidl_cb) override;
     80     Return<Result> setParameter(const hidl_vec<uint8_t>& parameter,
     81                                 const hidl_vec<uint8_t>& value) override;
     82     Return<void> getParameter(const hidl_vec<uint8_t>& parameter, uint32_t valueMaxSize,
     83                               getParameter_cb _hidl_cb) override;
     84     Return<void> getSupportedConfigsForFeature(uint32_t featureId, uint32_t maxConfigs,
     85                                                uint32_t configSize,
     86                                                getSupportedConfigsForFeature_cb _hidl_cb) override;
     87     Return<void> getCurrentConfigForFeature(uint32_t featureId, uint32_t configSize,
     88                                             getCurrentConfigForFeature_cb _hidl_cb) override;
     89     Return<Result> setCurrentConfigForFeature(uint32_t featureId,
     90                                               const hidl_vec<uint8_t>& configData) override;
     91     Return<Result> close() override;
     92     Return<void> debug(const hidl_handle& fd, const hidl_vec<hidl_string>& options) override;
     93 
     94     // Methods from ::android::hardware::audio::effect::CPP_VERSION::IVirtualizerEffect
     95     // follow.
     96     Return<bool> isStrengthSupported() override;
     97     Return<Result> setStrength(uint16_t strength) override;
     98     Return<void> getStrength(getStrength_cb _hidl_cb) override;
     99     Return<void> getVirtualSpeakerAngles(AudioChannelBitfield mask, AudioDevice device,
    100                                          getVirtualSpeakerAngles_cb _hidl_cb) override;
    101     Return<Result> forceVirtualizationMode(AudioDevice device) override;
    102     Return<void> getVirtualizationMode(getVirtualizationMode_cb _hidl_cb) override;
    103 
    104    private:
    105     sp<Effect> mEffect;
    106 
    107     virtual ~VirtualizerEffect();
    108 
    109     void speakerAnglesFromHal(const int32_t* halAngles, uint32_t channelCount,
    110                               hidl_vec<SpeakerAngle>& speakerAngles);
    111 };
    112 
    113 }  // namespace implementation
    114 }  // namespace CPP_VERSION
    115 }  // namespace effect
    116 }  // namespace audio
    117 }  // namespace hardware
    118 }  // namespace android
    119 
    120 #endif  // ANDROID_HARDWARE_AUDIO_EFFECT_VIRTUALIZEREFFECT_H
    121