/* * Copyright (C) 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. */ #ifndef I_AVCODEC_SERVICE_H #define I_AVCODEC_SERVICE_H #include #include "avcodec_common.h" #include "avcodec_info.h" #include "buffer/avsharedmemory.h" #include "refbase.h" #include "surface.h" namespace OHOS { namespace Media { class IAVCodecService { public: virtual ~IAVCodecService() = default; virtual int32_t InitParameter(AVCodecType type, bool isMimeType, const std::string &name) = 0; virtual int32_t Configure(const Format &format) = 0; virtual int32_t Prepare() = 0; virtual int32_t Start() = 0; virtual int32_t Stop() = 0; virtual int32_t Flush() = 0; virtual int32_t Reset() = 0; virtual int32_t Release() = 0; virtual int32_t NotifyEos() = 0; virtual sptr CreateInputSurface() = 0; virtual int32_t SetOutputSurface(sptr surface) = 0; virtual std::shared_ptr GetInputBuffer(uint32_t index) = 0; virtual int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) = 0; virtual std::shared_ptr GetOutputBuffer(uint32_t index) = 0; virtual int32_t GetOutputFormat(Format &format) = 0; virtual int32_t ReleaseOutputBuffer(uint32_t index, bool render = false) = 0; virtual int32_t SetParameter(const Format &format) = 0; virtual int32_t SetCallback(const std::shared_ptr &callback) = 0; }; } // namespace Media } // namespace OHOS #endif // I_AVCODEC_SERVICE_H