/* * 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_AUDIO_DECODER_DEMO_H #define AVCODEC_AUDIO_DECODER_DEMO_H #include #include #include #include #include #include "native_avcodec_audiodecoder.h" #include "nocopyable.h" namespace OHOS { namespace MediaAVCodec { namespace AudioDemo { enum AudioFormatType : int32_t { TYPE_AAC = 0, TYPE_FLAC = 1, TYPE_MP3 = 2, TYPE_VORBIS = 3, TYPE_AMRNB = 4, TYPE_AMRWB = 5, TYPE_OPUS = 6, TYPE_G711MU = 7, TYPE_MAX = 8, }; class ADecSignal { public: std::mutex inMutex_; std::mutex outMutex_; std::mutex startMutex_; std::condition_variable inCond_; std::condition_variable outCond_; std::condition_variable startCond_; std::queue inQueue_; std::queue outQueue_; std::queue inBufferQueue_; std::queue outBufferQueue_; std::queue attrQueue_; }; class ADecDemo : public NoCopyable { public: ADecDemo(); virtual ~ADecDemo(); void RunCase(AudioFormatType audioType); private: int32_t CreateDec(); int32_t Configure(OH_AVFormat *format); int32_t Start(); int32_t Stop(); int32_t Flush(); int32_t Reset(); int32_t Release(); void InputFunc(); void OutputFunc(); void HandleInputEOS(const uint32_t index); int32_t HandleNormalInput(const uint32_t &index, const int64_t pts, const size_t size); bool InitFile(AudioFormatType audioType); std::atomic isRunning_ = false; std::unique_ptr testFile_; std::unique_ptr inputLoop_; std::unique_ptr outputLoop_; OH_AVCodec *audioDec_; ADecSignal *signal_; struct OH_AVCodecAsyncCallback cb_; bool isFirstFrame_ = true; uint32_t frameCount_ = 0; std::ifstream inputFile_; std::ofstream pcmOutputFile_; AudioFormatType audioType_; }; } // namespace AudioDemo } // namespace MediaAVCodec } // namespace OHOS #endif // AVCODEC_AUDIO_DECODER_DEMO_H