Skip to content

Commit

Permalink
Linuxでのビルドを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 12, 2020
1 parent 38e686d commit 4d5aac9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion QSVPipeline/qsv_query.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ mfxVersion get_mfx_lib_version(mfxIMPL impl) {
}
#elif LIBVA_SUPPORT
{
auto hwdev = std::make_unique<CQSVHWDevice>(CreateVAAPIDevice("", MFX_LIBVA_DRM, log));
auto hwdev = std::unique_ptr<CQSVHWDevice>(CreateVAAPIDevice("", MFX_LIBVA_DRM, log));
sts = hwdev->Init(NULL, 0, GetAdapterID(*test.get()));
}
#endif
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,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")
Expand Down

0 comments on commit 4d5aac9

Please sign in to comment.