| /* |
| * Copyright (C) 2023 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. |
| */ |
| |
| #include <algorithm> |
| #include <cstddef> |
| #include <memory> |
| #include <unordered_set> |
| |
| #include <aidl/android/hardware/audio/effect/DefaultExtension.h> |
| #define LOG_TAG "AHAL_ExtensionEffect" |
| #include <android-base/logging.h> |
| #include <fmq/AidlMessageQueue.h> |
| #include <system/audio_effects/effect_uuid.h> |
| |
| #include "ExtensionEffect.h" |
| |
| using aidl::android::hardware::audio::effect::DefaultExtension; |
| using aidl::android::hardware::audio::effect::Descriptor; |
| using aidl::android::hardware::audio::effect::ExtensionEffect; |
| using aidl::android::hardware::audio::effect::getEffectImplUuidExtension; |
| using aidl::android::hardware::audio::effect::getEffectTypeUuidExtension; |
| using aidl::android::hardware::audio::effect::IEffect; |
| using aidl::android::hardware::audio::effect::Range; |
| using aidl::android::hardware::audio::effect::VendorExtension; |
| using aidl::android::media::audio::common::AudioUuid; |
| |
| extern "C" binder_exception_t createEffect(const AudioUuid* in_impl_uuid, |
| std::shared_ptr<IEffect>* instanceSpp) { |
| if (!in_impl_uuid || *in_impl_uuid != getEffectImplUuidExtension()) { |
| LOG(ERROR) << __func__ << "uuid not supported"; |
| return EX_ILLEGAL_ARGUMENT; |
| } |
| if (instanceSpp) { |
| *instanceSpp = ndk::SharedRefBase::make<ExtensionEffect>(); |
| LOG(DEBUG) << __func__ << " instance " << instanceSpp->get() << " created"; |
| return EX_NONE; |
| } else { |
| LOG(ERROR) << __func__ << " invalid input parameter!"; |
| return EX_ILLEGAL_ARGUMENT; |
| } |
| } |
| |
| extern "C" binder_exception_t queryEffect(const AudioUuid* in_impl_uuid, Descriptor* _aidl_return) { |
| if (!in_impl_uuid || *in_impl_uuid != getEffectImplUuidExtension()) { |
| LOG(ERROR) << __func__ << "uuid not supported"; |
| return EX_ILLEGAL_ARGUMENT; |
| } |
| *_aidl_return = ExtensionEffect::kDescriptor; |
| return EX_NONE; |
| } |
| |
| namespace aidl::android::hardware::audio::effect { |
| |
| const std::string ExtensionEffect::kEffectName = "ExtensionEffectExample"; |
| |
| const Descriptor ExtensionEffect::kDescriptor = { |
| .common = {.id = {.type = getEffectTypeUuidExtension(), |
| .uuid = getEffectImplUuidExtension(), |
| .proxy = std::nullopt}, |
| .name = ExtensionEffect::kEffectName, |
| .implementor = "The Android Open Source Project"}}; |
| |
| ndk::ScopedAStatus ExtensionEffect::getDescriptor(Descriptor* _aidl_return) { |
| LOG(DEBUG) << __func__ << kDescriptor.toString(); |
| *_aidl_return = kDescriptor; |
| return ndk::ScopedAStatus::ok(); |
| } |
| |
| ndk::ScopedAStatus ExtensionEffect::setParameterSpecific(const Parameter::Specific& specific) { |
| RETURN_IF(Parameter::Specific::vendorEffect != specific.getTag(), EX_ILLEGAL_ARGUMENT, |
| "EffectNotSupported"); |
| RETURN_IF(!mContext, EX_NULL_POINTER, "nullContext"); |
| |
| auto& vendorEffect = specific.get<Parameter::Specific::vendorEffect>(); |
| std::optional<DefaultExtension> defaultExt; |
| RETURN_IF(STATUS_OK != vendorEffect.extension.getParcelable(&defaultExt), EX_ILLEGAL_ARGUMENT, |
| "getParcelableFailed"); |
| RETURN_IF(!defaultExt.has_value(), EX_ILLEGAL_ARGUMENT, "parcelableNull"); |
| RETURN_IF(mContext->setParams(defaultExt->bytes) != RetCode::SUCCESS, EX_ILLEGAL_ARGUMENT, |
| "paramNotSupported"); |
| |
| return ndk::ScopedAStatus::ok(); |
| } |
| |
| ndk::ScopedAStatus ExtensionEffect::getParameterSpecific(const Parameter::Id& id, |
| Parameter::Specific* specific) { |
| auto tag = id.getTag(); |
| RETURN_IF(Parameter::Id::vendorEffectTag != tag, EX_ILLEGAL_ARGUMENT, "wrongIdTag"); |
| auto extensionId = id.get<Parameter::Id::vendorEffectTag>(); |
| std::optional<DefaultExtension> defaultIdExt; |
| RETURN_IF(STATUS_OK != extensionId.extension.getParcelable(&defaultIdExt), EX_ILLEGAL_ARGUMENT, |
| "getIdParcelableFailed"); |
| RETURN_IF(!defaultIdExt.has_value(), EX_ILLEGAL_ARGUMENT, "parcelableIdNull"); |
| |
| VendorExtension extension; |
| DefaultExtension defaultExt; |
| defaultExt.bytes = mContext->getParams(defaultIdExt->bytes); |
| RETURN_IF(STATUS_OK != extension.extension.setParcelable(defaultExt), EX_ILLEGAL_ARGUMENT, |
| "setParcelableFailed"); |
| specific->set<Parameter::Specific::vendorEffect>(extension); |
| return ndk::ScopedAStatus::ok(); |
| } |
| |
| std::shared_ptr<EffectContext> ExtensionEffect::createContext(const Parameter::Common& common) { |
| if (mContext) { |
| LOG(DEBUG) << __func__ << " context already exist"; |
| } else { |
| mContext = std::make_shared<ExtensionEffectContext>(1 /* statusFmqDepth */, common); |
| } |
| return mContext; |
| } |
| |
| RetCode ExtensionEffect::releaseContext() { |
| if (mContext) { |
| mContext.reset(); |
| } |
| return RetCode::SUCCESS; |
| } |
| |
| // Processing method running in EffectWorker thread. |
| IEffect::Status ExtensionEffect::effectProcessImpl(float* in, float* out, int samples) { |
| // TODO: get data buffer and process. |
| LOG(DEBUG) << __func__ << " in " << in << " out " << out << " samples " << samples; |
| for (int i = 0; i < samples; i++) { |
| *out++ = *in++; |
| } |
| return {STATUS_OK, samples, samples}; |
| } |
| |
| } // namespace aidl::android::hardware::audio::effect |