[FFmpeg-devel] [PATCH 2/2] lavc/qsvdec: disable gpu copy when not supported
Zhong Li
zhongli_dev at 126.com
Sat Dec 28 16:30:33 EET 2019
Signed-off-by: Zhong Li <zhongli_dev at 126.com>
---
libavcodec/qsvdec.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c
index baaf1f205f..fc25dc73e5 100644
--- a/libavcodec/qsvdec.c
+++ b/libavcodec/qsvdec.c
@@ -99,9 +99,11 @@ static int qsv_init_session(AVCodecContext *avctx, QSVContext *q, mfxSession ses
int ret;
if (q->gpu_copy == MFX_GPUCOPY_ON &&
- !(q->iopattern & MFX_IOPATTERN_OUT_SYSTEM_MEMORY))
+ !(q->iopattern & MFX_IOPATTERN_OUT_SYSTEM_MEMORY)) {
av_log(avctx, AV_LOG_WARNING, "GPU-accelerated memory copy "
- "only works in MFX_IOPATTERN_OUT_SYSTEM_MEMORY.\n");
+ "only works in system memory mode.\n");
+ q->gpu_copy = MFX_GPUCOPY_OFF;
+ }
if (session) {
q->session = session;
} else if (hw_frames_ref) {
--
2.17.1
More information about the ffmpeg-devel
mailing list