/* * 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 AVCODEC_VIDEO_ENCODER_IMPL_H #define AVCODEC_VIDEO_ENCODER_IMPL_H #include "avcodec_video_encoder.h" #include "nocopyable.h" #include "i_avcodec_service.h" namespace OHOS { namespace MediaAVCodec { class AVCodecVideoEncoderImpl : public AVCodecVideoEncoder, public NoCopyable { public: AVCodecVideoEncoderImpl(); ~AVCodecVideoEncoderImpl(); int32_t Configure(const Format &format) override; int32_t SetCustomBuffer(std::shared_ptr buffer) override; int32_t Prepare() override; int32_t Start() override; int32_t Stop() override; int32_t Flush() override; int32_t Reset() override; int32_t Release() override; int32_t NotifyEos() override; sptr CreateInputSurface() override; int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) override; int32_t QueueInputBuffer(uint32_t index) override; int32_t QueueInputParameter(uint32_t index) override; int32_t GetOutputFormat(Format &format) override; int32_t ReleaseOutputBuffer(uint32_t index) override; int32_t SetParameter(const Format &format) override; int32_t SetCallback(const std::shared_ptr &callback) override; int32_t SetCallback(const std::shared_ptr &callback) override; int32_t SetCallback(const std::shared_ptr &callback) override; int32_t SetCallback(const std::shared_ptr &callback) override; int32_t GetInputFormat(Format &format) override; int32_t Init(AVCodecType type, bool isMimeType, const std::string &name, Format &format); private: std::shared_ptr codecClient_ = nullptr; }; } // namespace MediaAVCodec } // namespace OHOS #endif // AVCODEC_VIDEO_ENCODER_IMPL_H