Skip to content

Commit

Permalink
MFX_EXTBUFF_VPP_VIDEO_SIGNAL_INFOを設定すると古い環境ではvppの初期化に失敗するらしい。
Browse files Browse the repository at this point in the history
少なくともAPI 1.11以下のIvyBridgeで発生するとのこと。
  • Loading branch information
rigaya committed Apr 13, 2020
1 parent 0efc0d3 commit b4cd323
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion QSVPipeline/qsv_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ mfxStatus CQSVPipeline::CreateVppExtBuffers(sInputParams *pParams) {
m_VppExtParams.push_back((mfxExtBuffer *)&m_ExtVppVSI);
m_VppDoUseList.push_back(MFX_EXTBUFF_VPP_VIDEO_SIGNAL_INFO);
PrintMes(RGY_LOG_DEBUG, _T("InitMfxVppParams: vpp colorspace conversion enabled.\n"));
} else if(check_lib_version(m_mfxVer, MFX_LIB_VERSION_1_8)) {
} else if(check_lib_version(m_mfxVer, MFX_LIB_VERSION_1_17)) { //なんかMFX_EXTBUFF_VPP_VIDEO_SIGNAL_INFOを設定すると古い環境ではvppの初期化に失敗するらしい。
m_VppDoNotUseList.push_back(MFX_EXTBUFF_VPP_VIDEO_SIGNAL_INFO);
}

Expand Down
6 changes: 3 additions & 3 deletions QSVPipeline/rgy_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

#include "rgy_rev.h"

#define VER_FILEVERSION 0,4,0,0
#define VER_STR_FILEVERSION "4.00"
#define VER_STR_FILEVERSION_TCHAR _T("4.00")
#define VER_FILEVERSION 0,4,1,0
#define VER_STR_FILEVERSION "4.01"
#define VER_STR_FILEVERSION_TCHAR _T("4.01")

#ifdef _M_IX86
#define BUILD_ARCH_STR _T("x86")
Expand Down

0 comments on commit b4cd323

Please sign in to comment.