[FFmpeg-devel] [PATCH 2/6] qsv: libmfx no longer supports user plugin since version 2.0 (oneVPL)
Haihao Xiang
haihao.xiang at intel.com
Wed Sep 16 09:44:53 EEST 2020
See
https://spec.oneapi.com/versions/latest/elements/oneVPL/source/VPL_intel_media_sdk.html#msdk-full-name-feature-removals
https://github.com/oneapi-src/oneVPL
---
libavcodec/qsv.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c
index 55184e075a..472e0952b3 100644
--- a/libavcodec/qsv.c
+++ b/libavcodec/qsv.c
@@ -19,7 +19,6 @@
*/
#include <mfxvideo.h>
-#include <mfxplugin.h>
#include <mfxjpeg.h>
#include <stdio.h>
@@ -40,6 +39,10 @@
#include "mfxvp8.h"
#endif
+#if !QSV_VERSION_ATLEAST(2, 0)
+#include <mfxplugin.h>
+#endif
+
int ff_qsv_codec_id_to_mfx(enum AVCodecID codec_id)
{
switch (codec_id) {
@@ -295,6 +298,7 @@ enum AVPictureType ff_qsv_map_pictype(int mfx_pic_type)
static int qsv_load_plugins(mfxSession session, const char *load_plugins,
void *logctx)
{
+#if !QSV_VERSION_ATLEAST(2, 0)
if (!load_plugins || !*load_plugins)
return 0;
@@ -338,6 +342,7 @@ load_plugin_fail:
if (err < 0)
return err;
}
+#endif
return 0;
--
2.25.1
More information about the ffmpeg-devel
mailing list