1 /* 2 * Copyright (C) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef VIDEODEC_API11_SAMPLE_H 17 #define VIDEODEC_API11_SAMPLE_H 18 19 #include <iostream> 20 #include <cstdio> 21 #include <unistd.h> 22 #include <atomic> 23 #include <fstream> 24 #include <thread> 25 #include <mutex> 26 #include <queue> 27 #include <string> 28 #include <unordered_map> 29 #include "securec.h" 30 #include "native_avcodec_videodecoder.h" 31 #include "nocopyable.h" 32 #include "native_avmemory.h" 33 #include "native_avformat.h" 34 #include "native_averrors.h" 35 #include "window.h" 36 #include "iconsumer_surface.h" 37 38 namespace OHOS { 39 namespace Media { 40 class VDecAPI11Signal { 41 public: 42 std::mutex inMutex_; 43 std::mutex outMutex_; 44 std::condition_variable inCond_; 45 std::condition_variable outCond_; 46 std::queue<uint32_t> inIdxQueue_; 47 std::queue<uint32_t> outIdxQueue_; 48 std::queue<OH_AVCodecBufferAttr> attrQueue_; 49 std::queue<OH_AVBuffer *> inBufferQueue_; 50 std::queue<OH_AVBuffer *> outBufferQueue_; 51 }; 52 53 class VDecAPI11Sample : public NoCopyable { 54 public: 55 VDecAPI11Sample() = default; 56 ~VDecAPI11Sample(); 57 int32_t RunVideoDec_Surface(std::string codeName = ""); 58 int32_t RunVideoDec(std::string codeName = ""); 59 const char *INP_DIR = "/data/test/media/1920_1080_30.h265"; 60 const char *OUT_DIR = "/data/test/media/VDecTest.yuv"; 61 const char *OUT_DIR2 = "/data/test/media/VDecTest2.yuv"; 62 bool SF_OUTPUT = false; 63 bool TRANSFER_FLAG = false; 64 bool NV21_FLAG = false; 65 bool PREPARE_FLAG = true; 66 bool IS_FIRST_FRAME = true; 67 uint32_t DEFAULT_WIDTH = 1920; 68 uint32_t DEFAULT_HEIGHT = 1080; 69 uint32_t defualtPixelFormat = AV_PIXEL_FORMAT_NV12; 70 uint32_t REPEAT_CALL_TIME = 10; 71 uint32_t MAX_SURF_NUM = 2; 72 double DEFAULT_FRAME_RATE = 30.0; 73 uint32_t DEFAULT_RANGE_FLAG = 0; 74 bool BEFORE_EOS_INPUT = false; // 0800 测试用例 75 bool BEFORE_EOS_INPUT_INPUT = false; // 0900 测试用例 76 bool AFTER_EOS_DESTORY_CODEC = true; // 1000 测试用例 结束不销毁codec 77 uint32_t REPEAT_START_STOP_BEFORE_EOS = 0; // 1200 测试用例 78 uint32_t REPEAT_START_FLUSH_BEFORE_EOS = 0; // 1300 测试用例 79 uint32_t frameCount_ = 0; 80 uint32_t repeat_time = 0; 81 uint32_t outFrameCount = 0; 82 bool outputYuvFlag = false; 83 // 解码输出数据预期 84 bool needCheckOutputDesc = true; 85 bool isResChangeStream = false; 86 uint32_t expectCropTop = 0; 87 uint32_t expectCropBottom = 0; 88 uint32_t expectCropLeft = 0; 89 uint32_t expectCropRight = 0; 90 int32_t stride_ = 0; 91 int32_t sliceHeight_ = 0; 92 int32_t picWidth_ = 0; 93 int32_t picHeight_ = 0; 94 int32_t enbleSyncMode = 0; 95 int64_t syncInputWaitTime = -1; 96 int64_t syncOutputWaitTime = -1; 97 bool queryOutputBufferEOS = false; 98 bool queryInputBufferEOS = false; 99 100 int32_t Start(); 101 int32_t Stop(); 102 int32_t Flush(); 103 int32_t Reset(); 104 int32_t Prepare(); 105 int32_t StartDecoder(); 106 int32_t StartSyncDecoder(); 107 int32_t state_EOS(); 108 void SetEOS(uint32_t index, OH_AVBuffer *buffer); 109 void WaitForEOS(); 110 int32_t ConfigureVideoDecoder(); 111 int32_t StartVideoDecoder(); 112 int64_t GetSystemTimeUs(); 113 int32_t CreateVideoDecoder(std::string codeName); 114 int32_t SetVideoDecoderCallback(); 115 void testAPI(); 116 int32_t SwitchSurface(); 117 int32_t RepeatCallSetSurface(); 118 int32_t Release(); 119 int32_t SetParameter(OH_AVFormat *format); 120 void CheckOutputDescription(); 121 void AutoSwitchSurface(); 122 void InputFunc(); 123 int32_t PushData(uint32_t index, OH_AVBuffer *buffer); 124 int32_t CheckAndReturnBufferSize(OH_AVBuffer *buffer); 125 uint32_t SendData(uint32_t bufferSize, uint32_t index, OH_AVBuffer *buffer); 126 void ProcessOutputData(OH_AVBuffer *buffer, uint32_t index); 127 int32_t CheckAttrFlag(OH_AVCodecBufferAttr attr); 128 void GetStride(); 129 void InputFuncTest(); 130 void InFuncTest(); 131 void SyncInputFunc(); 132 void OutputFuncTest(); 133 void SyncOutputFunc(); 134 int32_t SyncOutputFuncEos(OH_AVCodecBufferAttr attr, uint32_t index); 135 void ReleaseSignal(); 136 void CreateSurface(); 137 void ReleaseInFile(); 138 void StopInloop(); 139 void Flush_buffer(); 140 void StopOutloop(); 141 bool IsRender(); 142 void RenderOutAtTime(uint32_t index); 143 bool MdCompare(uint8_t source[]); 144 std::vector<uint8_t> LoadHashFile(); 145 VDecAPI11Signal *signal_; 146 uint32_t errCount = 0; 147 uint32_t outCount = 0; 148 int64_t renderTimestampNs = 0; 149 bool rsAtTime = false; 150 int64_t outTimeArray[2000] = {}; 151 bool sleepOnFPS = false; 152 bool repeatRun = false; 153 int64_t decode_count = 0; 154 int64_t start_time = 0; 155 int32_t maxInputSize = 0; 156 int64_t end_time = 0; 157 bool autoSwitchSurface = false; 158 std::atomic<bool> isFlushing_ { false }; 159 int32_t switchSurfaceFlag = 0; 160 std::atomic<bool> isRunning_ { false }; 161 bool inputCallbackFlush = false; 162 bool inputCallbackStop = false; 163 bool outputCallbackFlush = false; 164 bool outputCallbackStop = false; 165 bool useHDRSource = false; 166 bool NocaleHash = false; 167 bool isAPI = false; 168 int32_t DEFAULT_PROFILE = HEVC_PROFILE_MAIN_10; 169 int32_t DecodeSetSurface(); 170 int enbleBlankFrame = 0; 171 private: 172 std::unique_ptr<std::ifstream> inFile_; 173 std::unique_ptr<std::thread> inputLoop_; 174 std::unique_ptr<std::thread> outputLoop_; 175 std::unordered_map<uint32_t, OH_AVBuffer *> inBufferMap_; 176 std::unordered_map<uint32_t, OH_AVBuffer *> outBufferMap_; 177 OH_AVCodec *vdec_; 178 OH_AVCodecCallback cb_; 179 int64_t timeStamp_ { 0}; 180 int64_t lastRenderedTimeUs_ { 0 }; 181 bool isFirstFrame_ = true; 182 OHNativeWindow *nativeWindow[2] = {}; 183 sptr<Surface> cs[2] = {}; 184 sptr<Surface> ps[2] = {}; 185 }; 186 } // namespace Media 187 } // namespace OHOS 188 189 void VdecAPI11Error(OH_AVCodec *codec, int32_t errorCode, void *userData); 190 void VdecAPI11FormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData); 191 void VdecAPI11InputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *data, void *userData); 192 void VdecAPI11OutputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *data, void *userData); 193 int32_t HighRand(); 194 int32_t WidthRand(); 195 int32_t FrameRand(); 196 #endif // VIDEODEC_SAMPLE_H 197