[FFmpeg-devel] [PATCH v4 08/11] libavfilter/qsvvpp: add MFX_MEMTYPE_FROM_VPPOUT flag to output frame memory mode
artem.galin at gmail.com
artem.galin at gmail.com
Fri May 8 18:18:18 EEST 2020
From: Artem Galin <artem.galin at intel.com>
In case of DX11 device type, Media SDK is sensitive to these flags.
Signed-off-by: Artem Galin <artem.galin at intel.com>
---
libavfilter/qsvvpp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/qsvvpp.c b/libavfilter/qsvvpp.c
index 0d3f7fb2f9..c89d4180d0 100644
--- a/libavfilter/qsvvpp.c
+++ b/libavfilter/qsvvpp.c
@@ -452,7 +452,7 @@ static int init_vpp_session(AVFilterContext *avctx, QSVVPPContext *s)
s->out_mem_mode = IS_OPAQUE_MEMORY(s->in_mem_mode) ?
MFX_MEMTYPE_OPAQUE_FRAME :
- MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET;
+ MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET | MFX_MEMTYPE_FROM_VPPOUT;
out_frames_ctx = (AVHWFramesContext *)out_frames_ref->data;
out_frames_hwctx = out_frames_ctx->hwctx;
--
2.26.0
More information about the ffmpeg-devel
mailing list