[FFmpeg-cvslog] lavc/qsv: Use vendor id to create device

Fei Wang git at videolan.org
Fri Aug 9 10:30:05 EEST 2024


ffmpeg | branch: master | Fei Wang <fei.w.wang at intel.com> | Fri Jul 26 09:05:22 2024 +0800| [cda5f5c5ed6de9ed5bba5c926adefe5588ea881a] | committer: Haihao Xiang

lavc/qsv: Use vendor id to create device

New kernel driver "xe" will be supported from Lunar Lake instead of
"i915".

"xe" kernel driver:
https://github.com/torvalds/linux/tree/master/drivers/gpu/drm/xe

Signed-off-by: Fei Wang <fei.w.wang at intel.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cda5f5c5ed6de9ed5bba5c926adefe5588ea881a
---

 libavcodec/qsv.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c
index 221c1b24e5..8a3dc95706 100644
--- a/libavcodec/qsv.c
+++ b/libavcodec/qsv.c
@@ -468,8 +468,8 @@ static int ff_qsv_set_display_handle(AVCodecContext *avctx, QSVSession *qs)
     AVVAAPIDeviceContext *hwctx;
     int ret;
 
-    av_dict_set(&child_device_opts, "kernel_driver", "i915", 0);
-    av_dict_set(&child_device_opts, "driver",        "iHD",  0);
+    av_dict_set(&child_device_opts, "vendor_id", "0x8086", 0);
+    av_dict_set(&child_device_opts, "driver",    "iHD",    0);
 
     ret = av_hwdevice_ctx_create(&qs->va_device_ref, AV_HWDEVICE_TYPE_VAAPI, NULL, child_device_opts, 0);
     av_dict_free(&child_device_opts);



More information about the ffmpeg-cvslog mailing list