1 /* 2 * Copyright (C) 2023 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 "surface/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_10_30Mb.h264"; 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 uint32_t DEFAULT_WIDTH = 1920; 64 uint32_t DEFAULT_HEIGHT = 1080; 65 uint32_t originalWidth = 0; 66 uint32_t originalHeight = 0; 67 bool SURFACE_OUTPUT = false; 68 uint32_t defualtPixelFormat = AV_PIXEL_FORMAT_NV12; 69 uint32_t REPEAT_CALL_TIME = 10; 70 uint32_t MAX_SURF_NUM = 2; 71 double DEFAULT_FRAME_RATE = 30.0; 72 uint32_t DEFAULT_RANGE_FLAG = 0; 73 bool BEFORE_EOS_INPUT = false; // 0800 测试用例 74 bool BEFORE_EOS_INPUT_INPUT = false; // 0900 测试用例 75 bool AFTER_EOS_DESTORY_CODEC = true; // 1000 测试用例 结束不销毁codec 76 uint32_t REPEAT_START_STOP_BEFORE_EOS = 0; // 1200 测试用例 77 uint32_t REPEAT_START_FLUSH_BEFORE_EOS = 0; // 1300 测试用例 78 uint32_t frameCount_ = 0; 79 bool outputYuvFlag = false; 80 uint32_t repeat_time = 0; 81 uint32_t outFrameCount = 0; 82 // 解码输出数据预期 83 bool needCheckOutputDesc = false; 84 bool isResChangeStream = false; 85 uint32_t expectCropTop = 0; 86 uint32_t expectCropBottom = 0; 87 uint32_t expectCropLeft = 0; 88 uint32_t expectCropRight = 0; 89 const char *fileSourcesha256[64] = {"27", "6D", "A2", "D4", "18", "21", "A5", "CD", "50", "F6", "DD", "CA", "46", 90 "32", "C3", "FE", "58", "FC", "BC", "51", "FD", "70", "C7", "D4", "E7", "4D", 91 "5C", "76", "E7", "71", "8A", "B3", "C0", "51", "84", "0A", "FA", "AF", "FA", 92 "DC", "7B", "C5", "26", "D1", "9A", "CA", "00", "DE", "FC", "C8", "4E", "34", 93 "C5", "9A", "43", "59", "85", "DC", "AC", "97", "A3", "FB", "23", "51"}; 94 95 int32_t Start(); 96 int32_t Stop(); 97 int32_t Flush(); 98 int32_t Reset(); 99 int32_t state_EOS(); 100 void SetEOS(uint32_t index, OH_AVBuffer *buffer); 101 void WaitForEOS(); 102 int32_t ConfigureVideoDecoder(); 103 int32_t StartVideoDecoder(); 104 int64_t GetSystemTimeUs(); 105 int32_t CreateVideoDecoder(std::string codeName); 106 int32_t SetVideoDecoderCallback(); 107 void testAPI(); 108 int32_t SwitchSurface(); 109 int32_t RepeatCallSetSurface(); 110 int32_t Release(); 111 int32_t SetParameter(OH_AVFormat *format); 112 void CheckOutputDescription(); 113 void AutoSwitchSurface(); 114 void InputFunc(); 115 int32_t PushData(uint32_t index, OH_AVBuffer *buffer); 116 int32_t CheckAndReturnBufferSize(OH_AVBuffer *buffer); 117 uint32_t SendData(uint32_t bufferSize, uint32_t index, OH_AVBuffer *buffer); 118 void ProcessOutputData(OH_AVBuffer *buffer, uint32_t index, int32_t size); 119 int32_t CheckAttrFlag(OH_AVCodecBufferAttr attr); 120 void OutputFunc(); 121 void InputFuncTest(); 122 void OutputFuncTest(); 123 void ReleaseSignal(); 124 void CreateSurface(); 125 void ReleaseInFile(); 126 void StopInloop(); 127 void Flush_buffer(); 128 void StopOutloop(); 129 bool IsRender(); 130 bool MdCompare(unsigned char *buffer, int len, const char *source[]); 131 VDecAPI11Signal *signal_; 132 uint32_t errCount = 0; 133 uint32_t outCount = 0; 134 int64_t renderTimestampNs = 0; 135 bool rsAtTime = false; 136 int64_t outTimeArray[2000] = {}; 137 bool sleepOnFPS = false; 138 bool repeatRun = false; 139 int64_t decode_count = 0; 140 int64_t start_time = 0; 141 int32_t maxInputSize = 0; 142 int64_t end_time = 0; 143 bool autoSwitchSurface = false; 144 int32_t switchSurfaceFlag = 0; 145 std::atomic<bool> isRunning_ { false }; 146 bool inputCallbackFlush = false; 147 bool inputCallbackStop = false; 148 bool outputCallbackFlush = false; 149 bool outputCallbackStop = false; 150 bool useHDRSource = false; 151 int32_t DEFAULT_PROFILE = HEVC_PROFILE_MAIN_10; 152 private: 153 std::unique_ptr<std::ifstream> inFile_; 154 std::unique_ptr<std::thread> inputLoop_; 155 std::unique_ptr<std::thread> outputLoop_; 156 std::unordered_map<uint32_t, OH_AVBuffer *> inBufferMap_; 157 std::unordered_map<uint32_t, OH_AVBuffer *> outBufferMap_; 158 OH_AVCodec *vdec_; 159 OH_AVCodecCallback cb_; 160 int64_t timeStamp_ { 0}; 161 int64_t lastRenderedTimeUs_ { 0 }; 162 bool isFirstFrame_ = true; 163 OHNativeWindow *nativeWindow[2] = {}; 164 sptr<Surface> cs[2] = {}; 165 sptr<Surface> ps[2] = {}; 166 }; 167 } // namespace Media 168 } // namespace OHOS 169 170 void VdecAPI11Error(OH_AVCodec *codec, int32_t errorCode, void *userData); 171 void VdecAPI11FormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData); 172 void VdecAPI11InputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *data, void *userData); 173 void VdecAPI11OutputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *data, void *userData); 174 #endif // VIDEODEC_SAMPLE_H 175