/* * Copyright (C) 2024 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_E2E_DEMO_API10_H #define AVCODEC_E2E_DEMO_API10_H #include #include #include #include "native_avcodec_base.h" #include "native_avdemuxer.h" #include "native_avmuxer.h" #include "native_avsource.h" #include "native_avformat.h" namespace OHOS { namespace MediaAVCodec { namespace E2EDemo { class AVCodecE2EDemoAPI10 { public: explicit AVCodecE2EDemoAPI10(const char *file); ~AVCodecE2EDemoAPI10(); void Configure(); void Start(); void WaitForEOS(); void Stop(); void WriteAudioTrack(); OH_AVDemuxer *demuxer = nullptr; OH_AVMuxer *muxer = nullptr; uint32_t videoTrackID = -1; uint32_t audioTrackID = -1; OH_AVCodec *dec = nullptr; OH_AVCodec *enc = nullptr; std::condition_variable waitCond; std::atomic isFinish; uint32_t frameDuration = 0; std::unique_ptr audioThread; private: OH_AVSource *inSource = nullptr; int32_t trackCount = 0; int32_t fd; int32_t outFd; }; } } } #endif