mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
lavu/hwcontext_qsv: Update after adding support for VAAPI on Windows
- qsv_internal.h: Remove unnecessary include va_drm.h - qsv_internal.h: Enable AVCODEC_QSV_LINUX_SESSION_HANDLE on Linux/VA only - hwcontext_qsv.c: Do not allow child_device_type VAAPI for Windows until support is added, keep D3D11/DXVA2 as more prioritary defaults. Initial review at https://github.com/intel-media-ci/ffmpeg/pull/619/ Signed-off-by: Sil Vilerino <sivileri@microsoft.com> Reviewed-by: Dmitry Rogozhkin <dmitry.v.rogozhkin@intel.com> Reviewed-by: Wu, Tong1 <tong1.wu@intel.com>
This commit is contained in:
parent
5ff1430452
commit
a9a2ddaea8
@ -23,9 +23,9 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#if CONFIG_VAAPI
|
#if CONFIG_VAAPI && !defined(_WIN32) // Do not enable for libva-win32 on Windows
|
||||||
#define AVCODEC_QSV_LINUX_SESSION_HANDLE
|
#define AVCODEC_QSV_LINUX_SESSION_HANDLE
|
||||||
#endif //CONFIG_VAAPI
|
#endif //CONFIG_VAAPI && !defined(_WIN32)
|
||||||
|
|
||||||
#ifdef AVCODEC_QSV_LINUX_SESSION_HANDLE
|
#ifdef AVCODEC_QSV_LINUX_SESSION_HANDLE
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -35,7 +35,6 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <va/va.h>
|
#include <va/va.h>
|
||||||
#include <va/va_drm.h>
|
|
||||||
#include "libavutil/hwcontext_vaapi.h"
|
#include "libavutil/hwcontext_vaapi.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -2126,8 +2126,6 @@ static int qsv_device_create(AVHWDeviceContext *ctx, const char *device,
|
|||||||
"\"%s\".\n", e->value);
|
"\"%s\".\n", e->value);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
} else if (CONFIG_VAAPI) {
|
|
||||||
child_device_type = AV_HWDEVICE_TYPE_VAAPI;
|
|
||||||
#if QSV_ONEVPL
|
#if QSV_ONEVPL
|
||||||
} else if (CONFIG_D3D11VA) { // Use D3D11 by default if d3d11va is enabled
|
} else if (CONFIG_D3D11VA) { // Use D3D11 by default if d3d11va is enabled
|
||||||
av_log(ctx, AV_LOG_VERBOSE,
|
av_log(ctx, AV_LOG_VERBOSE,
|
||||||
@ -2147,11 +2145,23 @@ static int qsv_device_create(AVHWDeviceContext *ctx, const char *device,
|
|||||||
} else if (CONFIG_D3D11VA) {
|
} else if (CONFIG_D3D11VA) {
|
||||||
child_device_type = AV_HWDEVICE_TYPE_D3D11VA;
|
child_device_type = AV_HWDEVICE_TYPE_D3D11VA;
|
||||||
#endif
|
#endif
|
||||||
|
} else if (CONFIG_VAAPI) {
|
||||||
|
child_device_type = AV_HWDEVICE_TYPE_VAAPI;
|
||||||
} else {
|
} else {
|
||||||
av_log(ctx, AV_LOG_ERROR, "No supported child device type is enabled\n");
|
av_log(ctx, AV_LOG_ERROR, "No supported child device type is enabled\n");
|
||||||
return AVERROR(ENOSYS);
|
return AVERROR(ENOSYS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if CONFIG_VAAPI && defined(_WIN32)
|
||||||
|
/* AV_HWDEVICE_TYPE_VAAPI on Windows/Libva-win32 not supported */
|
||||||
|
/* Reject user specified child_device_type or CONFIG_VAAPI on Windows */
|
||||||
|
if (child_device_type == AV_HWDEVICE_TYPE_VAAPI) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR, "VAAPI child device type not supported for oneVPL on Windows"
|
||||||
|
"\"%s\".\n", e->value);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
child_device_opts = NULL;
|
child_device_opts = NULL;
|
||||||
switch (child_device_type) {
|
switch (child_device_type) {
|
||||||
#if CONFIG_VAAPI
|
#if CONFIG_VAAPI
|
||||||
|
Loading…
Reference in New Issue
Block a user