mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
The basic implementation of VCPKG as a beta version. By default will be disabled. To enable needs to remove CMake cache and reconfigure with BUILD_USE_VCPKG flag to ON. The current version do not support whole list of 3rd-party, only limited. and VCPKG_ROOT reachable as a CMake or env variable Add vcpkg support for FFmpeg and Jemalloc, including configuration files and patches.
23 lines
770 B
Diff
23 lines
770 B
Diff
Subject: [PATCH] fix d3d11
|
|
---
|
|
Index: qsv.c
|
|
IDEA additional info:
|
|
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
|
|
<+>UTF-8
|
|
===================================================================
|
|
diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c
|
|
--- a/libavcodec/qsv.c
|
|
+++ b/libavcodec/qsv.c
|
|
@@ -383,7 +383,11 @@
|
|
int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs,
|
|
const char *load_plugins, int gpu_copy)
|
|
{
|
|
+#if CONFIG_D3D11VA
|
|
+ mfxIMPL impl = MFX_IMPL_AUTO_ANY | MFX_IMPL_VIA_D3D11;
|
|
+#else
|
|
mfxIMPL impl = MFX_IMPL_AUTO_ANY;
|
|
+#endif
|
|
mfxVersion ver = { { QSV_VERSION_MINOR, QSV_VERSION_MAJOR } };
|
|
mfxInitParam init_par = { MFX_IMPL_AUTO_ANY };
|
|
|