/* * Copyright (C) 2023 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_CODEC_SERVICE_H #define I_CODEC_SERVICE_H #include #include "avcodec_common.h" #include "avcodec_info.h" #include "buffer/avsharedmemory.h" #include "refbase.h" #include "surface.h" #include "meta/meta.h" #include "meta/format.h" #include "buffer/avbuffer.h" #include "buffer/avbuffer_queue.h" #include "buffer/avbuffer_queue_consumer.h" #include "buffer/avbuffer_queue_define.h" #include "buffer/avbuffer_queue_producer.h" #include "foundation/multimedia/drm_framework/services/drm_service/ipc/i_keysession_service.h" namespace OHOS { namespace MediaAVCodec { class ICodecService { public: virtual ~ICodecService() = default; virtual int32_t Init(AVCodecType type, bool isMimeType, const std::string &name, Media::Meta &callerInfo, API_VERSION apiVersion = API_VERSION::API_VERSION_10) = 0; virtual int32_t Configure(const Format &format) = 0; virtual int32_t SetCustomBuffer(std::shared_ptr buffer) = 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 int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) = 0; virtual int32_t QueueInputBuffer(uint32_t index) = 0; virtual int32_t QueueInputParameter(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 RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) = 0; virtual int32_t SetParameter(const Format &format) = 0; virtual int32_t SetCallback(const std::shared_ptr &callback) = 0; virtual int32_t SetCallback(const std::shared_ptr &callback) = 0; virtual int32_t SetCallback(const std::shared_ptr &callback) = 0; virtual int32_t SetCallback(const std::shared_ptr &callback) = 0; virtual int32_t GetInputFormat(Format &format) = 0; virtual int32_t SetDecryptConfig(const sptr &keySession, const bool svpFlag) { (void)keySession; (void)svpFlag; return AVCODEC_ERROR_EXTEND_START; } /* API11 audio codec interface */ virtual int32_t CreateCodecByName(const std::string &name) { (void)name; return AVCODEC_ERROR_EXTEND_START; } virtual int32_t Configure(const std::shared_ptr &meta) { (void)meta; return AVCODEC_ERROR_EXTEND_START; } virtual int32_t SetParameter(const std::shared_ptr ¶meter) { (void)parameter; return AVCODEC_ERROR_EXTEND_START; } virtual int32_t GetOutputFormat(std::shared_ptr ¶meter) { (void)parameter; return AVCODEC_ERROR_EXTEND_START; } virtual int32_t SetOutputBufferQueue(const sptr &bufferQueueProducer) { (void)bufferQueueProducer; return AVCODEC_ERROR_EXTEND_START; } virtual int32_t Prepare() { return AVCODEC_ERROR_EXTEND_START; } virtual sptr GetInputBufferQueue() { return nullptr; } virtual void ProcessInputBuffer() { return; } virtual bool CheckRunning() { return false; } /* API12 audio codec interface for drm */ virtual int32_t SetAudioDecryptionConfig(const sptr &keySession, const bool svpFlag) { (void)keySession; (void)svpFlag; return AVCODEC_ERROR_EXTEND_START; } }; } // namespace MediaAVCodec } // namespace OHOS #endif // I_CODEC_SERVICE_H