From 4d5aac98ad2b166f93ec149bee6a25568cfebe8e Mon Sep 17 00:00:00 2001 From: rigaya Date: Thu, 12 Nov 2020 12:38:40 +0900 Subject: [PATCH] =?UTF-8?q?Linux=E3=81=A7=E3=81=AE=E3=83=93=E3=83=AB?= =?UTF-8?q?=E3=83=89=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- QSVPipeline/qsv_query.cpp | 2 +- QSVPipeline/rgy_version.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/QSVPipeline/qsv_query.cpp b/QSVPipeline/qsv_query.cpp index 79e80ce6..749478fd 100644 --- a/QSVPipeline/qsv_query.cpp +++ b/QSVPipeline/qsv_query.cpp @@ -175,7 +175,7 @@ mfxVersion get_mfx_lib_version(mfxIMPL impl) { } #elif LIBVA_SUPPORT { - auto hwdev = std::make_unique(CreateVAAPIDevice("", MFX_LIBVA_DRM, log)); + auto hwdev = std::unique_ptr(CreateVAAPIDevice("", MFX_LIBVA_DRM, log)); sts = hwdev->Init(NULL, 0, GetAdapterID(*test.get())); } #endif diff --git a/QSVPipeline/rgy_version.h b/QSVPipeline/rgy_version.h index d3520ca3..b8485a6e 100644 --- a/QSVPipeline/rgy_version.h +++ b/QSVPipeline/rgy_version.h @@ -31,9 +31,9 @@ #include "rgy_rev.h" -#define VER_FILEVERSION 0,4,8,0 -#define VER_STR_FILEVERSION "4.08" -#define VER_STR_FILEVERSION_TCHAR _T("4.08") +#define VER_FILEVERSION 0,4,9,0 +#define VER_STR_FILEVERSION "4.09" +#define VER_STR_FILEVERSION_TCHAR _T("4.09") #ifdef _M_IX86 #define BUILD_ARCH_STR _T("x86")