libavcodec/qsv: enabling d3d11va support, added mfxhdlpair

Adding DX11 relevant device type checks and adjusting callbacks with
proper MediaSDK pair type support.

Extending structure for proper MediaSDK pair type support.

Signed-off-by: Artem Galin <artem.galin@intel.com>
This commit is contained in:
Artem Galin
2021-08-20 22:48:02 +01:00
committed by James Almer
parent 3df55c7bd6
commit 776d5a7472
2 changed files with 37 additions and 18 deletions

View File

@@ -36,6 +36,8 @@
#include "avcodec.h" #include "avcodec.h"
#include "qsv_internal.h" #include "qsv_internal.h"
#define MFX_IMPL_VIA_MASK(impl) (0x0f00 & (impl))
#if QSV_VERSION_ATLEAST(1, 12) #if QSV_VERSION_ATLEAST(1, 12)
#include "mfx/mfxvp8.h" #include "mfx/mfxvp8.h"
#endif #endif
@@ -230,7 +232,9 @@ int ff_qsv_find_surface_idx(QSVFramesContext *ctx, QSVFrame *frame)
int i; int i;
for (i = 0; i < ctx->nb_mids; i++) { for (i = 0; i < ctx->nb_mids; i++) {
QSVMid *mid = &ctx->mids[i]; QSVMid *mid = &ctx->mids[i];
if (mid->handle == frame->surface.Data.MemId) mfxHDLPair *pair = (mfxHDLPair*)frame->surface.Data.MemId;
if ((mid->handle_pair->first == pair->first) &&
(mid->handle_pair->second == pair->second))
return i; return i;
} }
return AVERROR_BUG; return AVERROR_BUG;
@@ -370,7 +374,11 @@ static int ff_qsv_set_display_handle(AVCodecContext *avctx, QSVSession *qs)
int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs, int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs,
const char *load_plugins, int gpu_copy) 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; mfxIMPL impl = MFX_IMPL_AUTO_ANY;
#endif
mfxVersion ver = { { QSV_VERSION_MINOR, QSV_VERSION_MAJOR } }; mfxVersion ver = { { QSV_VERSION_MINOR, QSV_VERSION_MAJOR } };
mfxInitParam init_par = { MFX_IMPL_AUTO_ANY }; mfxInitParam init_par = { MFX_IMPL_AUTO_ANY };
@@ -459,7 +467,7 @@ static AVBufferRef *qsv_create_mids(AVBufferRef *hw_frames_ref)
for (i = 0; i < nb_surfaces; i++) { for (i = 0; i < nb_surfaces; i++) {
QSVMid *mid = &mids[i]; QSVMid *mid = &mids[i];
mid->handle = frames_hwctx->surfaces[i].Data.MemId; mid->handle_pair = (mfxHDLPair*)frames_hwctx->surfaces[i].Data.MemId;
mid->hw_frames_ref = hw_frames_ref1; mid->hw_frames_ref = hw_frames_ref1;
} }
@@ -636,7 +644,7 @@ static mfxStatus qsv_frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
goto fail; goto fail;
qsv_mid->surf.Info = hw_frames_hwctx->surfaces[0].Info; qsv_mid->surf.Info = hw_frames_hwctx->surfaces[0].Info;
qsv_mid->surf.Data.MemId = qsv_mid->handle; qsv_mid->surf.Data.MemId = qsv_mid->handle_pair;
/* map the data to the system memory */ /* map the data to the system memory */
ret = av_hwframe_map(qsv_mid->locked_frame, qsv_mid->hw_frame, ret = av_hwframe_map(qsv_mid->locked_frame, qsv_mid->hw_frame,
@@ -669,7 +677,13 @@ static mfxStatus qsv_frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
static mfxStatus qsv_frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl) static mfxStatus qsv_frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
{ {
QSVMid *qsv_mid = (QSVMid*)mid; QSVMid *qsv_mid = (QSVMid*)mid;
*hdl = qsv_mid->handle; mfxHDLPair *pair_dst = (mfxHDLPair*)hdl;
mfxHDLPair *pair_src = (mfxHDLPair*)qsv_mid->handle_pair;
pair_dst->first = pair_src->first;
if (pair_src->second != (mfxMemId)MFX_INFINITE)
pair_dst->second = pair_src->second;
return MFX_ERR_NONE; return MFX_ERR_NONE;
} }
@@ -677,24 +691,19 @@ int ff_qsv_init_session_device(AVCodecContext *avctx, mfxSession *psession,
AVBufferRef *device_ref, const char *load_plugins, AVBufferRef *device_ref, const char *load_plugins,
int gpu_copy) int gpu_copy)
{ {
static const mfxHandleType handle_types[] = {
MFX_HANDLE_VA_DISPLAY,
MFX_HANDLE_D3D9_DEVICE_MANAGER,
MFX_HANDLE_D3D11_DEVICE,
};
AVHWDeviceContext *device_ctx = (AVHWDeviceContext*)device_ref->data; AVHWDeviceContext *device_ctx = (AVHWDeviceContext*)device_ref->data;
AVQSVDeviceContext *device_hwctx = device_ctx->hwctx; AVQSVDeviceContext *device_hwctx = device_ctx->hwctx;
mfxSession parent_session = device_hwctx->session; mfxSession parent_session = device_hwctx->session;
mfxInitParam init_par = { MFX_IMPL_AUTO_ANY }; mfxInitParam init_par = { MFX_IMPL_AUTO_ANY };
mfxHDL handle = NULL; mfxHDL handle = NULL;
int hw_handle_supported = 0;
mfxSession session; mfxSession session;
mfxVersion ver; mfxVersion ver;
mfxIMPL impl; mfxIMPL impl;
mfxHandleType handle_type; mfxHandleType handle_type;
mfxStatus err; mfxStatus err;
int ret;
int i, ret;
err = MFXQueryIMPL(parent_session, &impl); err = MFXQueryIMPL(parent_session, &impl);
if (err == MFX_ERR_NONE) if (err == MFX_ERR_NONE)
@@ -703,13 +712,23 @@ int ff_qsv_init_session_device(AVCodecContext *avctx, mfxSession *psession,
return ff_qsv_print_error(avctx, err, return ff_qsv_print_error(avctx, err,
"Error querying the session attributes"); "Error querying the session attributes");
for (i = 0; i < FF_ARRAY_ELEMS(handle_types); i++) { if (MFX_IMPL_VIA_VAAPI == MFX_IMPL_VIA_MASK(impl)) {
err = MFXVideoCORE_GetHandle(parent_session, handle_types[i], &handle); handle_type = MFX_HANDLE_VA_DISPLAY;
if (err == MFX_ERR_NONE) { hw_handle_supported = 1;
handle_type = handle_types[i]; } else if (MFX_IMPL_VIA_D3D11 == MFX_IMPL_VIA_MASK(impl)) {
break; handle_type = MFX_HANDLE_D3D11_DEVICE;
hw_handle_supported = 1;
} else if (MFX_IMPL_VIA_D3D9 == MFX_IMPL_VIA_MASK(impl)) {
handle_type = MFX_HANDLE_D3D9_DEVICE_MANAGER;
hw_handle_supported = 1;
}
if (hw_handle_supported) {
err = MFXVideoCORE_GetHandle(parent_session, handle_type, &handle);
if (err != MFX_ERR_NONE) {
return ff_qsv_print_error(avctx, err,
"Error getting handle session");
} }
handle = NULL;
} }
if (!handle) { if (!handle) {
av_log(avctx, AV_LOG_VERBOSE, "No supported hw handle could be retrieved " av_log(avctx, AV_LOG_VERBOSE, "No supported hw handle could be retrieved "

View File

@@ -62,7 +62,7 @@
typedef struct QSVMid { typedef struct QSVMid {
AVBufferRef *hw_frames_ref; AVBufferRef *hw_frames_ref;
mfxHDL handle; mfxHDLPair *handle_pair;
AVFrame *locked_frame; AVFrame *locked_frame;
AVFrame *hw_frame; AVFrame *hw_frame;