/* * Copyright (c) 2021-2021 Huawei Device Co., Ltd. * 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 "plugin/core/codec.h" #include #include "foundation/pre_defines.h" #include "plugin/interface/codec_plugin.h" namespace OHOS { namespace Media { namespace Plugin { Codec::Codec(uint32_t pkgVer, uint32_t apiVer, std::shared_ptr plugin) : Base(pkgVer, apiVer, plugin), codec_(std::move(plugin)) { } Status Codec::QueueInputBuffer(const std::shared_ptr& inputBuffer, int32_t timeoutMs) { return codec_->QueueInputBuffer(inputBuffer, timeoutMs); } Status Codec::QueueOutputBuffer(const std::shared_ptr& outputBuffers, int32_t timeoutMs) { return codec_->QueueOutputBuffer(outputBuffers, timeoutMs); } Status Codec::Flush() { return codec_->Flush(); } struct DataCallbackWrapper : DataCallback { DataCallbackWrapper(uint32_t pkgVersion, DataCallbackHelper* dataCallback) : version(pkgVersion), dataCallbackHelper(dataCallback) { } ~DataCallbackWrapper() override = default; void OnInputBufferDone(const std::shared_ptr& input) override { dataCallbackHelper->OnInputBufferDone(input); } void OnOutputBufferDone(const std::shared_ptr& output) override { dataCallbackHelper->OnOutputBufferDone(output); } private: MEDIA_UNUSED uint32_t version; DataCallbackHelper* dataCallbackHelper; }; Status Codec::SetDataCallback(DataCallbackHelper* dataCallback) { dataCallback_ = std::make_shared(pkgVersion_, dataCallback); return codec_->SetDataCallback(dataCallback_.get()); } } // namespace Plugin } // namespace Media } // namespace OHOS