| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| #pragma once
|
| #include <iomanip>
|
| #include <chrono>
|
| #include <sys/stat.h>
|
| #include <assert.h>
|
| #include <stdint.h>
|
| #include <string.h>
|
| #include "Logger.h"
|
| #include <ios>
|
| #include <sstream>
|
| #include <thread>
|
| #include <list>
|
| #include <vector>
|
| #include <condition_variable>
|
|
|
| extern simplelogger::Logger *logger;
|
|
|
| #ifdef __cuda_cuda_h__
|
|
|
| #if CUDA_VERSION >= 13000
|
| #define NVCODEC_CUDA_CTX_CREATE(pctx, flags, dev) \
|
| cuCtxCreate_v4(pctx, 0, flags, dev)
|
| #else
|
| #define NVCODEC_CUDA_CTX_CREATE(pctx, flags, dev) \
|
| cuCtxCreate_v2(pctx, flags, dev)
|
| #endif
|
|
|
| inline bool check(CUresult e, int iLine, const char *szFile) {
|
| if (e != CUDA_SUCCESS) {
|
| const char *szErrName = NULL;
|
| cuGetErrorName(e, &szErrName);
|
| LOG(FATAL) << "CUDA driver API error " << szErrName << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
| #endif
|
|
|
| #ifdef __CUDA_RUNTIME_H__
|
| inline bool check(cudaError_t e, int iLine, const char *szFile) {
|
| if (e != cudaSuccess) {
|
| LOG(FATAL) << "CUDA runtime API error " << cudaGetErrorName(e) << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
| #endif
|
|
|
| #ifdef _NV_ENCODEAPI_H_
|
| inline bool check(NVENCSTATUS e, int iLine, const char *szFile) {
|
| const char *aszErrName[] = {
|
| "NV_ENC_SUCCESS",
|
| "NV_ENC_ERR_NO_ENCODE_DEVICE",
|
| "NV_ENC_ERR_UNSUPPORTED_DEVICE",
|
| "NV_ENC_ERR_INVALID_ENCODERDEVICE",
|
| "NV_ENC_ERR_INVALID_DEVICE",
|
| "NV_ENC_ERR_DEVICE_NOT_EXIST",
|
| "NV_ENC_ERR_INVALID_PTR",
|
| "NV_ENC_ERR_INVALID_EVENT",
|
| "NV_ENC_ERR_INVALID_PARAM",
|
| "NV_ENC_ERR_INVALID_CALL",
|
| "NV_ENC_ERR_OUT_OF_MEMORY",
|
| "NV_ENC_ERR_ENCODER_NOT_INITIALIZED",
|
| "NV_ENC_ERR_UNSUPPORTED_PARAM",
|
| "NV_ENC_ERR_LOCK_BUSY",
|
| "NV_ENC_ERR_NOT_ENOUGH_BUFFER",
|
| "NV_ENC_ERR_INVALID_VERSION",
|
| "NV_ENC_ERR_MAP_FAILED",
|
| "NV_ENC_ERR_NEED_MORE_INPUT",
|
| "NV_ENC_ERR_ENCODER_BUSY",
|
| "NV_ENC_ERR_EVENT_NOT_REGISTERD",
|
| "NV_ENC_ERR_GENERIC",
|
| "NV_ENC_ERR_INCOMPATIBLE_CLIENT_KEY",
|
| "NV_ENC_ERR_UNIMPLEMENTED",
|
| "NV_ENC_ERR_RESOURCE_REGISTER_FAILED",
|
| "NV_ENC_ERR_RESOURCE_NOT_REGISTERED",
|
| "NV_ENC_ERR_RESOURCE_NOT_MAPPED",
|
| };
|
| if (e != NV_ENC_SUCCESS) {
|
| LOG(FATAL) << "NVENC error " << aszErrName[e] << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
| #endif
|
|
|
| #ifdef _WINERROR_
|
| inline bool check(HRESULT e, int iLine, const char *szFile) {
|
| if (e != S_OK) {
|
| std::stringstream stream;
|
| stream << std::hex << std::uppercase << e;
|
| LOG(FATAL) << "HRESULT error 0x" << stream.str() << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
| #endif
|
|
|
| #if defined(__gl_h_) || defined(__GL_H__)
|
| inline bool check(GLenum e, int iLine, const char *szFile) {
|
| if (e != 0) {
|
| LOG(ERROR) << "GLenum error " << e << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
| #endif
|
|
|
| inline bool check(int e, int iLine, const char *szFile) {
|
| if (e < 0) {
|
| LOG(ERROR) << "General error " << e << " at line " << iLine << " in file " << szFile;
|
| return false;
|
| }
|
| return true;
|
| }
|
|
|
| #define ck(call) check(call, __LINE__, __FILE__)
|
| #define CudaCheckError() \
|
| do { \
|
| cudaError err_ = cudaGetLastError(); \
|
| if (err_ != cudaSuccess) { \
|
| printf("CudaCheckError() failed at: %s:%d\n", __FILE__, __LINE__); \
|
| printf("code: %d ; description: %s\n", err_, cudaGetErrorString(err_)); \
|
| exit(1); \
|
| } \
|
| \
|
| err_ = cudaDeviceSynchronize(); \
|
| if (cudaSuccess != err_) { \
|
| printf("CudaCheckError() failed after sync at: %s:%d;\n", __FILE__, \
|
| __LINE__); \
|
| printf("code: %d; description: %s\n", err_, cudaGetErrorString(err_)); \
|
| exit(1); \
|
| } \
|
| } while (0)
|
| #define MAKE_FOURCC( ch0, ch1, ch2, ch3 ) \
|
| ( (uint32_t)(uint8_t)(ch0) | ( (uint32_t)(uint8_t)(ch1) << 8 ) | \
|
| ( (uint32_t)(uint8_t)(ch2) << 16 ) | ( (uint32_t)(uint8_t)(ch3) << 24 ) )
|
|
|
|
|
|
|
| inline void NvSleep(unsigned int mSec)
|
| {
|
| #if defined WIN32 || defined _WIN32
|
| Sleep(mSec);
|
| #else
|
| usleep(mSec * 1000);
|
| #endif
|
| }
|
|
|
| |
| |
|
|
| class NvThread
|
| {
|
| public:
|
| NvThread() = default;
|
| NvThread(const NvThread&) = delete;
|
| NvThread& operator=(const NvThread& other) = delete;
|
|
|
| NvThread(std::thread&& thread) : t(std::move(thread))
|
| {
|
|
|
| }
|
|
|
| NvThread(NvThread&& thread) : t(std::move(thread.t))
|
| {
|
|
|
| }
|
|
|
| NvThread& operator=(NvThread&& other)
|
| {
|
| t = std::move(other.t);
|
| return *this;
|
| }
|
|
|
| ~NvThread()
|
| {
|
| join();
|
| }
|
|
|
| void join()
|
| {
|
| if (t.joinable())
|
| {
|
| t.join();
|
| }
|
| }
|
| private:
|
| std::thread t;
|
| };
|
|
|
| #ifndef _WIN32
|
| #define _stricmp strcasecmp
|
| #define _stat64 stat64
|
| #endif
|
|
|
| |
| |
|
|
| class BufferedFileReader {
|
| public:
|
| |
| |
|
|
| BufferedFileReader(const char *szFileName, bool bPartial = false) {
|
| struct _stat64 st;
|
|
|
| if (_stat64(szFileName, &st) != 0) {
|
| return;
|
| }
|
|
|
| nSize = st.st_size;
|
| while (nSize) {
|
| try {
|
| pBuf = new uint8_t[(size_t)nSize];
|
| if (nSize != st.st_size) {
|
| LOG(WARNING) << "File is too large - only " << std::setprecision(4) << 100.0 * nSize / st.st_size << "% is loaded";
|
| }
|
| break;
|
| } catch(std::bad_alloc) {
|
| if (!bPartial) {
|
| LOG(ERROR) << "Failed to allocate memory in BufferedReader";
|
| return;
|
| }
|
| nSize = (uint32_t)(nSize * 0.9);
|
| }
|
| }
|
|
|
| std::ifstream fpIn(szFileName, std::ifstream::in | std::ifstream::binary);
|
| if (!fpIn)
|
| {
|
| LOG(ERROR) << "Unable to open input file: " << szFileName;
|
| return;
|
| }
|
|
|
| std::streamsize nRead = fpIn.read(reinterpret_cast<char*>(pBuf), nSize).gcount();
|
| fpIn.close();
|
|
|
| assert(nRead == nSize);
|
| }
|
| ~BufferedFileReader() {
|
| if (pBuf) {
|
| delete[] pBuf;
|
| }
|
| }
|
| bool GetBuffer(uint8_t **ppBuf, uint64_t *pnSize) {
|
| if (!pBuf) {
|
| return false;
|
| }
|
|
|
| *ppBuf = pBuf;
|
| *pnSize = nSize;
|
| return true;
|
| }
|
|
|
| private:
|
| uint8_t *pBuf = NULL;
|
| uint64_t nSize = 0;
|
| };
|
|
|
| #ifdef __NVCUVID_H__
|
| |
| |
|
|
| template<typename T>
|
| class YuvConverter {
|
| public:
|
| YuvConverter(int nWidth, int nHeight, uint8_t nChromaFormat) :
|
| nWidth(nWidth), nHeight(nHeight), nChromaFormat(nChromaFormat)
|
| {
|
| if (nChromaFormat == cudaVideoChromaFormat_420) {
|
| pQuad = new T[((nWidth + 1) / 2) * ((nHeight + 1) / 2)];
|
| } else {
|
| pQuad = new T[((nWidth + 1) / 2) * nHeight];
|
| }
|
| }
|
| ~YuvConverter() {
|
| delete[] pQuad;
|
| }
|
| void PlanarToUVInterleaved(T *pFrame, int nPitch = 0) {
|
| if (nPitch == 0) {
|
| nPitch = nWidth;
|
| }
|
|
|
|
|
| int nSizePlaneY = nPitch * nHeight;
|
| int nSizePlaneU = ((nPitch + 1) / 2) * ((nHeight + 1) / 2);
|
| int nSizePlaneV = nSizePlaneU;
|
|
|
| T *puv = pFrame + nSizePlaneY;
|
| if (nPitch == nWidth) {
|
| memcpy(pQuad, puv, nSizePlaneU * sizeof(T));
|
| } else {
|
| for (int i = 0; i < (nHeight + 1) / 2; i++) {
|
| memcpy(pQuad + ((nWidth + 1) / 2) * i, puv + ((nPitch + 1) / 2) * i, ((nWidth + 1) / 2) * sizeof(T));
|
| }
|
| }
|
| T *pv = puv + nSizePlaneU;
|
| for (int y = 0; y < (nHeight + 1) / 2; y++) {
|
| for (int x = 0; x < (nWidth + 1) / 2; x++) {
|
| puv[y * nPitch + x * 2] = pQuad[y * ((nWidth + 1) / 2) + x];
|
| puv[y * nPitch + x * 2 + 1] = pv[y * ((nPitch + 1) / 2) + x];
|
| }
|
| }
|
| }
|
| void UVInterleavedToPlanar(T *pFrame, int nPitch = 0) {
|
| if (nPitch == 0) {
|
| nPitch = nWidth;
|
| }
|
|
|
|
|
| int nSizePlaneY = nPitch * nHeight;
|
| int nSizePlaneU = (nChromaFormat == cudaVideoChromaFormat_420) ? (((nPitch + 1) / 2) * ((nHeight + 1) / 2)) : (((nPitch + 1) / 2) * nHeight);
|
| int nSizePlaneV = nSizePlaneU;
|
|
|
| T *puv = pFrame + nSizePlaneY,
|
| *pu = puv,
|
| *pv = puv + nSizePlaneU;
|
|
|
|
|
| int nChromaHeight = (nChromaFormat == cudaVideoChromaFormat_420) ? (nHeight + 1) / 2 : nHeight;
|
| for (int y = 0; y < nChromaHeight; y++) {
|
| for (int x = 0; x < (nWidth + 1) / 2; x++) {
|
| pu[y * ((nPitch + 1) / 2) + x] = puv[y * nPitch + x * 2];
|
| pQuad[y * ((nWidth + 1) / 2) + x] = puv[y * nPitch + x * 2 + 1];
|
| }
|
| }
|
| if (nPitch == nWidth) {
|
| memcpy(pv, pQuad, nSizePlaneV * sizeof(T));
|
| } else {
|
| for (int i = 0; i < nChromaHeight; i++) {
|
| memcpy(pv + ((nPitch + 1) / 2) * i, pQuad + ((nWidth + 1) / 2) * i, ((nWidth + 1) / 2) * sizeof(T));
|
| }
|
| }
|
| }
|
|
|
| private:
|
| T *pQuad;
|
| int nWidth, nHeight, nChromaFormat;
|
| };
|
| #endif
|
|
|
| |
| |
|
|
| class IVFUtils {
|
| public:
|
| void WriteFileHeader(std::vector<uint8_t> &vPacket, uint32_t nFourCC, uint32_t nWidth, uint32_t nHeight, uint32_t nFrameRateNum, uint32_t nFrameRateDen, uint32_t nFrameCnt)
|
| {
|
| char header[32];
|
|
|
| header[0] = 'D';
|
| header[1] = 'K';
|
| header[2] = 'I';
|
| header[3] = 'F';
|
| mem_put_le16(header + 4, 0);
|
| mem_put_le16(header + 6, 32);
|
| mem_put_le32(header + 8, nFourCC);
|
| mem_put_le16(header + 12, nWidth);
|
| mem_put_le16(header + 14, nHeight);
|
| mem_put_le32(header + 16, nFrameRateNum);
|
| mem_put_le32(header + 20, nFrameRateDen);
|
| mem_put_le32(header + 24, nFrameCnt);
|
| mem_put_le32(header + 28, 0);
|
|
|
| vPacket.insert(vPacket.end(), &header[0], &header[32]);
|
| }
|
|
|
| void WriteFrameHeader(std::vector<uint8_t> &vPacket, size_t nFrameSize, int64_t pts)
|
| {
|
| char header[12];
|
| mem_put_le32(header, (int)nFrameSize);
|
| mem_put_le32(header + 4, (int)(pts & 0xFFFFFFFF));
|
| mem_put_le32(header + 8, (int)(pts >> 32));
|
|
|
| vPacket.insert(vPacket.end(), &header[0], &header[12]);
|
| }
|
|
|
| private:
|
| static inline void mem_put_le32(void *vmem, int val)
|
| {
|
| unsigned char *mem = (unsigned char *)vmem;
|
| mem[0] = (unsigned char)((val >> 0) & 0xff);
|
| mem[1] = (unsigned char)((val >> 8) & 0xff);
|
| mem[2] = (unsigned char)((val >> 16) & 0xff);
|
| mem[3] = (unsigned char)((val >> 24) & 0xff);
|
| }
|
|
|
| static inline void mem_put_le16(void *vmem, int val)
|
| {
|
| unsigned char *mem = (unsigned char *)vmem;
|
| mem[0] = (unsigned char)((val >> 0) & 0xff);
|
| mem[1] = (unsigned char)((val >> 8) & 0xff);
|
| }
|
|
|
| };
|
|
|
| |
| |
|
|
| class StopWatch {
|
| public:
|
| void Start() {
|
| t0 = std::chrono::high_resolution_clock::now();
|
| }
|
| double Stop() {
|
| return std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now().time_since_epoch() - t0.time_since_epoch()).count() / 1.0e9;
|
| }
|
|
|
| private:
|
| std::chrono::high_resolution_clock::time_point t0;
|
| };
|
|
|
| template<typename T>
|
| class ConcurrentQueue
|
| {
|
| public:
|
|
|
| ConcurrentQueue() : maxSize(0) {}
|
| ConcurrentQueue(size_t size) : maxSize(size) {}
|
| ConcurrentQueue(const ConcurrentQueue&) = delete;
|
| ConcurrentQueue& operator=(const ConcurrentQueue&) = delete;
|
|
|
| void setSize(size_t s) {
|
| maxSize = s;
|
| }
|
|
|
| void push_back(const T& value) {
|
|
|
|
|
|
|
|
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
| auto wasEmpty = m_List.empty();
|
|
|
| while (full()) {
|
| m_cond.wait(lock);
|
| }
|
|
|
| m_List.push_back(value);
|
| if (wasEmpty && !m_List.empty()) {
|
| lock.unlock();
|
| m_cond.notify_one();
|
| }
|
| }
|
|
|
| T pop_front() {
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
|
|
| while (m_List.empty()) {
|
| m_cond.wait(lock);
|
| }
|
| auto wasFull = full();
|
| T data = std::move(m_List.front());
|
| m_List.pop_front();
|
|
|
| if (wasFull && !full()) {
|
| lock.unlock();
|
| m_cond.notify_one();
|
| }
|
|
|
| return data;
|
| }
|
|
|
| T front() {
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
|
|
| while (m_List.empty()) {
|
| m_cond.wait(lock);
|
| }
|
|
|
| return m_List.front();
|
| }
|
|
|
| size_t size() {
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
| return m_List.size();
|
| }
|
|
|
| bool empty() {
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
| return m_List.empty();
|
| }
|
| void clear() {
|
| std::unique_lock<std::mutex> lock(m_mutex);
|
| m_List.clear();
|
| }
|
|
|
| private:
|
| bool full() {
|
| if (maxSize > 0 && m_List.size() == maxSize)
|
| return true;
|
| return false;
|
| }
|
|
|
| private:
|
| std::list<T> m_List;
|
| std::mutex m_mutex;
|
| std::condition_variable m_cond;
|
| size_t maxSize;
|
| };
|
|
|
| inline void CheckInputFile(const char *szInFilePath) {
|
| std::ifstream fpIn(szInFilePath, std::ios::in | std::ios::binary);
|
| if (fpIn.fail()) {
|
| std::ostringstream err;
|
| err << "Unable to open input file: " << szInFilePath << std::endl;
|
| throw std::invalid_argument(err.str());
|
| }
|
| }
|
|
|
| inline void ValidateResolution(int nWidth, int nHeight) {
|
|
|
| if (nWidth <= 0 || nHeight <= 0) {
|
| std::ostringstream err;
|
| err << "Please specify positive non zero resolution as -s WxH. Current resolution is " << nWidth << "x" << nHeight << std::endl;
|
| throw std::invalid_argument(err.str());
|
| }
|
| }
|
|
|
| template <class COLOR32>
|
| void Nv12ToColor32(uint8_t *dpNv12, int nNv12Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void Nv12ToColor24(uint8_t *dpNv12, int nNv12Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void Nv12ToColor64(uint8_t *dpNv12, int nNv12Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void P016ToColor32(uint8_t *dpP016, int nP016Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void P016ToColor24(uint8_t *dpP016, int nP016Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void P016ToColor64(uint8_t *dpP016, int nP016Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void Nv16ToColor32(uint8_t *dpNv16, int nNv16Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void Nv16ToColor24(uint8_t *dpNv16, int nNv16Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void Nv16ToColor64(uint8_t *dpNv16, int nNv16Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void P216ToColor32(uint8_t *dpP216, int nP216Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void P216ToColor64(uint8_t *dpP216, int nP216Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void P216ToColor24(uint8_t *dpP216, int nP216Pitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void YUV444ToColor32(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void YUV444ToColor24(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void YUV444ToColor64(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void YUV444P16ToColor32(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR24>
|
| void YUV444P16ToColor24(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
| template <class COLOR64>
|
| void YUV444P16ToColor64(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgra, int nBgraPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void Nv12ToColorPlanar(uint8_t *dpNv12, int nNv12Pitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR32>
|
| void P016ToColorPlanar(uint8_t *dpP016, int nP016Pitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void Nv16ToColorPlanar(uint8_t *dpNv16, int nNv16Pitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR32>
|
| void P216ToColorPlanar(uint8_t *dpP216, int nP216Pitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| template <class COLOR32>
|
| void YUV444ToColorPlanar(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 0, bool video_full_range = 0);
|
| template <class COLOR32>
|
| void YUV444P16ToColorPlanar(uint8_t *dpYUV444, int nPitch, uint8_t *dpBgrp, int nBgrpPitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| void Bgra64ToP016(uint8_t *dpBgra, int nBgraPitch, uint8_t *dpP016, int nP016Pitch, int nWidth, int nHeight, int iMatrix = 4, bool video_full_range = 0);
|
|
|
| void ConvertUInt8ToUInt16(uint8_t *dpUInt8, uint16_t *dpUInt16, int nSrcPitch, int nDestPitch, int nWidth, int nHeight);
|
| void ConvertUInt16ToUInt8(uint16_t *dpUInt16, uint8_t *dpUInt8, int nSrcPitch, int nDestPitch, int nWidth, int nHeight);
|
|
|
| void ResizeNv12(unsigned char *dpDstNv12, int nDstPitch, int nDstWidth, int nDstHeight, unsigned char *dpSrcNv12, int nSrcPitch, int nSrcWidth, int nSrcHeight, unsigned char *dpDstNv12UV = nullptr);
|
| void ResizeP016(unsigned char *dpDstP016, int nDstPitch, int nDstWidth, int nDstHeight, unsigned char *dpSrcP016, int nSrcPitch, int nSrcWidth, int nSrcHeight, unsigned char *dpDstP016UV = nullptr);
|
|
|
| void ScaleYUV420(unsigned char *dpDstY, unsigned char* dpDstU, unsigned char* dpDstV, int nDstPitch, int nDstChromaPitch, int nDstWidth, int nDstHeight,
|
| unsigned char *dpSrcY, unsigned char* dpSrcU, unsigned char* dpSrcV, int nSrcPitch, int nSrcChromaPitch, int nSrcWidth, int nSrcHeight, bool bSemiplanar);
|
|
|
| #ifdef __cuda_cuda_h__
|
| void ComputeCRC(uint8_t *pBuffer, uint32_t *crcValue, CUstream_st *outputCUStream);
|
| #endif
|
|
|