1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
/*############################################################################
# Copyright (C) 2005 Intel Corporation
#
# SPDX-License-Identifier: MIT
############################################################################*/
#ifndef __SAMPLE_VPP_UTILS_H
#define __SAMPLE_VPP_UTILS_H
/* ************************************************************************* */
#ifndef D3D_SURFACES_SUPPORT
#if defined(_WIN32) || defined(_WIN64)
#define D3D_SURFACES_SUPPORT
#endif // #if defined(_WIN32) || defined(_WIN64)
#endif // #ifndef D3D_SURFACES_SUPPORT
#ifdef D3D_SURFACES_SUPPORT
#pragma warning(disable : 4201)
#include <d3d9.h>
#include <dxva2api.h>
#include <math.h>
#include <psapi.h>
#include <windows.h>
#endif
#include "hw_device.h"
#include "sample_defs.h"
#ifdef MFX_D3D11_SUPPORT
#include <d3d11.h>
#endif
#ifdef LIBVA_SUPPORT
#include "vaapi_allocator.h"
#include "vaapi_device.h"
#include "vaapi_utils.h"
#endif
#include <stdio.h>
#include <map>
#include <memory>
#include "vm/strings_defs.h"
#include "mfxplugin.h"
#include "vpl/mfxmvc.h"
#include "vpl/mfxvideo++.h"
#include "vpl/mfxvideo.h"
#include "base_allocator.h"
#include "sample_vpp_config.h"
#include "sample_vpp_roi.h"
// we introduce new macros without error message (returned status only)
// it allows to remove final error message due to EOF
#define IOSTREAM_MSDK_CHECK_NOT_EQUAL(P, X, ERR) \
{ \
if ((X) != (P)) { \
return ERR; \
} \
}
#define IMPL_VIA_MASK 0xF00
/* ************************************************************************* */
#ifndef MFX_VERSION
#error MFX_VERSION not defined
#endif
enum {
VPP_IN = 0,
VPP_OUT = 1,
};
enum {
ALLOC_IMPL_VIA_SYS = 0,
ALLOC_IMPL_VIA_D3D9 = 1,
ALLOC_IMPL_VIA_D3D11 = 2,
ALLOC_IMPL_VIA_VAAPI = 4
};
// the default api version is the latest one
// it is located at 0
enum eAPIVersion { API_2X, API_1X };
#ifdef ENABLE_MCTF
const mfxU16 MCTF_MID_FILTER_STRENGTH = 10;
const mfxF64 MCTF_AUTO_BPP = 0.0;
const mfxF64 MCTF_LOSSLESS_BPP = 0.0;
const mfxU16 MCTF_TEMPORAL_2REF_MODE = 3;
#endif
//#define BACKWARD_COMPATIBILITY
typedef struct _ownFrameInfo {
mfxU16 Shift;
mfxU16 BitDepthLuma;
mfxU16 BitDepthChroma;
mfxU16 nWidth;
mfxU16 nHeight;
// ROI
mfxU16 CropX;
mfxU16 CropY;
mfxU16 CropW;
mfxU16 CropH;
mfxU32 FourCC;
mfxU16 PicStruct;
mfxF64 dFrameRate;
} sOwnFrameInfo;
typedef struct _filtersParam {
sOwnFrameInfo* pOwnFrameInfo;
sDIParam* pDIParam;
sProcAmpParam* pProcAmpParam;
sDetailParam* pDetailParam;
sDenoiseParam* pDenoiseParam;
#ifdef ENABLE_MCTF
sMCTFParam* pMctfParam;
#endif
sVideoAnalysisParam* pVAParam;
sIDetectParam* pIDetectParam;
sFrameRateConversionParam* pFRCParam;
sMultiViewParam* pMultiViewParam;
sGamutMappingParam* pGamutParam;
sTccParam* pClrSaturationParam;
sAceParam* pContrastParam;
sSteParam* pSkinParam;
sIStabParam* pImgStabParam;
sSVCParam* pSVCParam;
sVideoSignalInfoParam* pVideoSignalInfo;
sMirroringParam* pMirroringParam;
sColorFillParam* pColorfillParam;
sVideoSignalInfo* pVideoSignalInfoIn;
sVideoSignalInfo* pVideoSignalInfoOut;
sSRParam* pSRParam;
} sFiltersParam;
struct sInputParams {
/* smart filters defined by mismatch btw src & dst */
std::vector<sOwnFrameInfo> frameInfoIn; // [0] - in, [1] - out
std::vector<sOwnFrameInfo> frameInfoOut; // [0] - in, [1] - out
/* Video Enhancement Algorithms */
std::vector<sDIParam> deinterlaceParam;
std::vector<sDenoiseParam> denoiseParam;
#ifdef ENABLE_MCTF
std::vector<sMCTFParam> mctfParam;
#endif
std::vector<sDetailParam> detailParam;
std::vector<sProcAmpParam> procampParam;
std::vector<sFrameRateConversionParam> frcParam;
std::vector<sVideoSignalInfoParam> videoSignalInfoParam;
std::vector<sMirroringParam> mirroringParam;
// MSDK 3.0
std::vector<sGamutMappingParam> gamutParam;
std::vector<sMultiViewParam> multiViewParam;
// MSDK API 1.5
std::vector<sTccParam> tccParam;
std::vector<sAceParam> aceParam;
std::vector<sSteParam> steParam;
std::vector<sIStabParam> istabParam;
std::vector<sColorFillParam> colorfillParam;
// flag describes type of memory
// true - frames in video memory (d3d surfaces),
// false - in system memory
// bool bd3dAlloc;
mfxU16 IOPattern;
mfxIMPL ImpLib;
mfxAccelerationMode accelerationMode;
#if defined(LINUX32) || defined(LINUX64)
std::string strDevicePath; // path to device for processing
#endif
#if defined(_WIN32)
LUID luid;
#else
mfxU32 DRMRenderNodeNum;
#endif
mfxU32 PCIDomain;
mfxU32 PCIBus;
mfxU32 PCIDevice;
mfxU32 PCIFunction;
bool PCIDeviceSetup;
mfxU16 adapterType;
mfxI32 dGfxIdx;
mfxI32 adapterNum;
bool dispFullSearch;
#if (defined(_WIN64) || defined(_WIN32)) && (MFX_VERSION >= 1031)
bool bPreferdGfx;
bool bPreferiGfx;
#endif
mfxU16 asyncNum;
mfxU32 vaType;
std::vector<mfxU16> rotate;
bool bScaling;
mfxU16 scalingMode;
mfxU16 interpolationMethod;
bool bChromaSiting;
mfxU16 uChromaSiting;
mfxU16 GPUCopyValue;
bool bPartialAccel;
bool bPerf;
mfxU32 numFrames;
mfxU16 numRepeat;
bool isOutput;
bool ptsCheck;
bool ptsJump;
bool ptsAdvanced;
mfxF64 ptsFR;
/* roi checking parameters */
sROICheckParam roiCheckParam;
#ifdef ENABLE_VPP_RUNTIME_HSBC
/* run-time ProcAmp parameters */
typedef struct {
bool isEnabled;
mfxU32 interval;
mfxF64 value1;
mfxF64 value2;
} sRtProcAmpParam;
sRtProcAmpParam rtHue;
sRtProcAmpParam rtSaturation;
sRtProcAmpParam rtBrightness;
sRtProcAmpParam rtContrast;
#endif
/* ********************** */
/* input\output streams */
/* ********************** */
char strSrcFile[MSDK_MAX_FILENAME_LEN];
std::vector<std::string> strDstFiles;
char strPerfFile[MSDK_MAX_FILENAME_LEN];
mfxU32 forcedOutputFourcc;
/* MFXVideoVPP_Reset */
std::vector<mfxU32> resetFrmNums;
sOwnFrameInfo inFrameInfo[MAX_INPUT_STREAMS];
mfxU16 numStreams;
sCompositionParam compositionParam;
mfxU32 fccSource;
eAPIVersion verSessionInit;
bool bReadByFrame;
bool b3dLut;
char lutTableFile[MSDK_MAX_FILENAME_LEN];
mfxU16 lutSize;
std::vector<mfxU8> lutTbl;
std::unique_ptr<mfxU16[]> RGB[3];
bool bIs3dLutVideoMem;
std::vector<sVideoSignalInfo> videoSignalInfoIn;
std::vector<sVideoSignalInfo> videoSignalInfoOut;
std::vector<sSRParam> srParam;
std::string m_vpp_cfg;
std::string dump_file;
sInputParams()
: frameInfoIn(),
frameInfoOut(),
deinterlaceParam(),
denoiseParam(),
#ifdef ENABLE_MCTF
mctfParam(),
#endif
detailParam(),
procampParam(),
frcParam(),
videoSignalInfoParam(),
mirroringParam(),
gamutParam(),
multiViewParam(),
tccParam(),
aceParam(),
steParam(),
istabParam(),
colorfillParam(),
IOPattern(0),
ImpLib(0),
accelerationMode(MFX_ACCEL_MODE_NA),
#if defined(LINUX32) || defined(LINUX64)
strDevicePath(),
#endif
#if defined(_WIN32)
luid({ 0 }),
#else
DRMRenderNodeNum(0),
#endif
PCIDomain(0),
PCIBus(0),
PCIDevice(0),
PCIFunction(0),
PCIDeviceSetup(false),
adapterType(mfxMediaAdapterType::MFX_MEDIA_UNKNOWN),
dGfxIdx(-1),
adapterNum(-1),
dispFullSearch(DEF_DISP_FULLSEARCH),
#if (defined(_WIN64) || defined(_WIN32)) && (MFX_VERSION >= 1031)
bPreferdGfx(false),
bPreferiGfx(false),
#endif
asyncNum(0),
vaType(0),
rotate(),
bScaling(false),
scalingMode(0),
interpolationMethod(0),
bChromaSiting(false),
uChromaSiting(0),
GPUCopyValue(0),
bPartialAccel(false),
bPerf(false),
numFrames(0),
numRepeat(0),
isOutput(false),
ptsCheck(false),
ptsJump(false),
ptsAdvanced(false),
ptsFR(0.0),
roiCheckParam(),
#ifdef ENABLE_VPP_RUNTIME_HSBC
rtHue({ 0 }),
rtSaturation({ 0 }),
rtBrightness({ 0 }),
rtContrast({ 0 }),
#endif
// strSrcFile
strDstFiles(),
// strPerfFile
forcedOutputFourcc(0),
resetFrmNums(),
// inFrameInfo
numStreams(0),
compositionParam({}),
fccSource(0),
verSessionInit(API_2X),
bReadByFrame(false),
b3dLut(false),
lutSize(0),
lutTbl(),
bIs3dLutVideoMem(false),
videoSignalInfoIn(),
videoSignalInfoOut(),
srParam(),
m_vpp_cfg(),
dump_file() {
MSDK_ZERO_MEMORY(strSrcFile);
MSDK_ZERO_MEMORY(strPerfFile);
MSDK_ZERO_MEMORY(inFrameInfo);
MSDK_ZERO_MEMORY(lutTableFile);
}
};
struct sFrameProcessor {
std::unique_ptr<VPLImplementationLoader> pLoader;
MainVideoSession mfxSession;
MFXVideoVPP* pmfxVPP;
mfxLoader loader = NULL;
sFrameProcessor(void) : pLoader(), mfxSession(), pmfxVPP(nullptr), loader(nullptr){};
};
struct sMemoryAllocator {
MFXFrameAllocator* pMfxAllocator;
mfxAllocatorParams* pAllocatorParams;
bool bUsedAsExternalAllocator;
mfxFrameSurfaceWrap* pSurfacesIn[MAX_INPUT_STREAMS]; // SINGLE_IN/OUT/MULTIPLE_INs
mfxFrameSurfaceWrap* pSurfacesOut;
mfxFrameAllocResponse responseIn[MAX_INPUT_STREAMS]; // SINGLE_IN/OUT/MULTIPLE_INs
mfxFrameAllocResponse responseOut;
mfxFrameSurfaceWrap* pSvcSurfaces[8]; //output surfaces per layer
mfxFrameAllocResponse svcResponse[8]; //per layer
CHWDevice* pDevice;
/*#ifdef D3D_SURFACES_SUPPORT
IDirect3DDeviceManager9* pd3dDeviceManager;
#endif
#ifdef MFX_D3D11_SUPPORT
ID3D11Device *pD3D11Device;
ID3D11DeviceContext *pD3D11DeviceContext;
#endif
#ifdef LIBVA_SUPPORT
std::unique_ptr<CLibVA> libvaKeeper;
#endif*/
};
class PTSMaker;
class CRawVideoReader {
public:
CRawVideoReader();
~CRawVideoReader();
void Close();
mfxStatus Init(const char* strFileName, PTSMaker* pPTSMaker, mfxU32 fcc);
mfxStatus PreAllocateFrameChunk(mfxVideoParam* pVideoParam,
sInputParams* pParams,
MFXFrameAllocator* pAllocator);
mfxStatus GetNextInputFrame(sMemoryAllocator* pAllocator,
mfxFrameInfo* pInfo,
mfxFrameSurfaceWrap** pSurface,
mfxU16 streamIndex);
mfxStatus GetNextInputFrame(sFrameProcessor* pProcessor,
mfxFrameInfo* pInfo,
mfxFrameSurfaceWrap** pSurface,
int bytes_to_read,
mfxU8* buf_read);
mfxStatus LoadNextFrame(mfxFrameData* pData, mfxFrameInfo* pInfo);
mfxStatus LoadNextFrame(mfxFrameSurface1* pSurface, int bytes_to_read, mfxU8* buf_read);
protected:
CRawVideoReader(CRawVideoReader const&) = delete;
const CRawVideoReader& operator=(CRawVideoReader const&) = delete;
private:
mfxStatus GetPreAllocFrame(mfxFrameSurfaceWrap** pSurface);
FILE* m_fSrc;
std::list<mfxFrameSurfaceWrap>::iterator m_it;
std::list<mfxFrameSurfaceWrap> m_SurfacesList;
bool m_isPerfMode;
mfxU16 m_Repeat;
PTSMaker* m_pPTSMaker;
mfxU32 m_initFcc;
};
class CRawVideoWriter {
public:
CRawVideoWriter();
~CRawVideoWriter();
void Close();
mfxStatus Init(const char* strFileName, PTSMaker* pPTSMaker, mfxU32 forcedOutputFourcc = 0);
mfxStatus PutNextFrame(sMemoryAllocator* pAllocator,
mfxFrameInfo* pInfo,
mfxFrameSurfaceWrap* pSurface);
mfxStatus PutNextFrame(mfxFrameInfo* pInfo, mfxFrameSurfaceWrap* pSurface);
protected:
CRawVideoWriter(CRawVideoWriter const&) = delete;
const CRawVideoWriter& operator=(CRawVideoWriter const&) = delete;
private:
mfxStatus WriteFrame(mfxFrameData* pData, mfxFrameInfo* pInfo);
FILE* m_fDst;
PTSMaker* m_pPTSMaker;
mfxU32 m_forcedOutputFourcc;
};
class GeneralWriter // : public CRawVideoWriter
{
public:
GeneralWriter();
~GeneralWriter();
void Close();
mfxStatus Init(const char* strFileName,
PTSMaker* pPTSMaker,
sSVCLayerDescr* pDesc = NULL,
mfxU32 forcedOutputFourcc = 0);
mfxStatus PutNextFrame(sMemoryAllocator* pAllocator,
mfxFrameInfo* pInfo,
mfxFrameSurfaceWrap* pSurface);
mfxStatus PutNextFrame(mfxFrameInfo* pInfo, mfxFrameSurfaceWrap* pSurface);
private:
std::unique_ptr<CRawVideoWriter> m_ofile[8];
bool m_svcMode;
};
// need for support async
class SurfaceVPPStore {
public:
struct SurfVPPExt {
SurfVPPExt(mfxFrameSurfaceWrap* pSurf = nullptr, mfxExtVppAuxData* pExt = nullptr)
: pSurface(pSurf),
pExtVpp(pExt){};
mfxFrameSurfaceWrap* pSurface;
mfxExtVppAuxData* pExtVpp;
};
SurfaceVPPStore() : m_SyncPoints(){};
typedef std::pair<mfxSyncPoint, SurfVPPExt> SyncPair;
std::list<SyncPair> m_SyncPoints;
};
struct sAppResources {
CRawVideoReader* pSrcFileReaders[MAX_INPUT_STREAMS];
mfxU16 numSrcFiles;
//CRawVideoWriter* pDstFileWriter;
GeneralWriter* pDstFileWriters;
mfxU32 dstFileWritersN;
sFrameProcessor* pProcessor;
MfxVideoParamsWrapper* pVppParams;
sMemoryAllocator* pAllocator;
sInputParams* pParams;
SurfaceVPPStore* pSurfStore;
// number of video enhancement filters (denoise, procamp, detail, video_analysis, multi_view, ste, istab, tcc, ace, svc)
constexpr static uint32_t ENH_FILTERS_COUNT = 20;
mfxU32 tabDoUseAlg[ENH_FILTERS_COUNT];
// MSDK 3.0
// mfxExtVPPGamutMapping gamutConfig;
////MSDK API 1.5
//mfxExtVPPSkinTone steConfig;
//mfxExtVPPColorSaturationLevel tccConfig;
mfxFrameAllocResponse* p3dlutResponse;
};
/* ******************************************************************* */
/* service functions */
/* ******************************************************************* */
void PrintLibInfo(sFrameProcessor* pProcessor);
void PrintStreamInfo(sInputParams* pParams,
mfxVideoParam* pMfxParams,
MFXVideoSession* pMfxSession);
void PrintDllInfo();
mfxStatus InitParamsVPP(MfxVideoParamsWrapper* pMFXParams, sInputParams* pInParams, mfxU32 paramID);
mfxStatus InitResources(sAppResources* pResources, mfxVideoParam* pParams, sInputParams* pInParams);
void WipeResources(sAppResources* pResources);
void WipeParams(sInputParams* pParams);
mfxStatus UpdateSurfacePool(mfxFrameInfo SurfacesInfo,
mfxU16 nPoolSize,
mfxFrameSurfaceWrap* pSurface);
mfxStatus GetFreeSurface(mfxFrameSurfaceWrap* pSurfacesPool,
mfxU16 nPoolSize,
mfxFrameSurfaceWrap** ppSurface);
const char* IOpattern2Str(mfxU32 IOpattern);
mfxStatus vppParseInputString(char* strInput[],
mfxU32 nArgNum,
sInputParams* pParams,
sFiltersParam* pDefaultFiltersParam);
bool CheckInputParams(char* strInput[], sInputParams* pParams);
void vppPrintHelp(const char* strAppName, const char* strErrorMessage);
mfxStatus ConfigVideoEnhancementFilters(sInputParams* pParams,
sAppResources* pResources,
mfxU32 paramID);
mfxStatus Config3dlut(sInputParams* pParams, sAppResources* pResources);
const char* PicStruct2Str(mfxU16 PicStruct);
mfxStatus ParseCompositionParfile(const char* parFileName, sInputParams* pParams);
#endif /* __SAMPLE_VPP_UTILS_H */
/* EOF */
|