You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavu/hwcontext_vulkan: check PCI ID if possible
Otherwise the derived device and the source device might have different PCI ID in a multiple-device system. Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
This commit is contained in:
@@ -1597,8 +1597,23 @@ static int vulkan_device_derive(AVHWDeviceContext *ctx,
|
|||||||
#if CONFIG_VAAPI
|
#if CONFIG_VAAPI
|
||||||
case AV_HWDEVICE_TYPE_VAAPI: {
|
case AV_HWDEVICE_TYPE_VAAPI: {
|
||||||
AVVAAPIDeviceContext *src_hwctx = src_ctx->hwctx;
|
AVVAAPIDeviceContext *src_hwctx = src_ctx->hwctx;
|
||||||
|
VADisplay dpy = src_hwctx->display;
|
||||||
|
#if VA_CHECK_VERSION(1, 15, 0)
|
||||||
|
VAStatus vas;
|
||||||
|
VADisplayAttribute attr = {
|
||||||
|
.type = VADisplayPCIID,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
const char *vendor;
|
||||||
|
|
||||||
const char *vendor = vaQueryVendorString(src_hwctx->display);
|
#if VA_CHECK_VERSION(1, 15, 0)
|
||||||
|
vas = vaGetDisplayAttributes(dpy, &attr, 1);
|
||||||
|
if (vas == VA_STATUS_SUCCESS && attr.flags != VA_DISPLAY_ATTRIB_NOT_SUPPORTED)
|
||||||
|
dev_select.pci_device = (attr.value & 0xFFFF);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (!dev_select.pci_device) {
|
||||||
|
vendor = vaQueryVendorString(dpy);
|
||||||
if (!vendor) {
|
if (!vendor) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Unable to get device info from VAAPI!\n");
|
av_log(ctx, AV_LOG_ERROR, "Unable to get device info from VAAPI!\n");
|
||||||
return AVERROR_EXTERNAL;
|
return AVERROR_EXTERNAL;
|
||||||
@@ -1606,6 +1621,7 @@ static int vulkan_device_derive(AVHWDeviceContext *ctx,
|
|||||||
|
|
||||||
if (strstr(vendor, "AMD"))
|
if (strstr(vendor, "AMD"))
|
||||||
dev_select.vendor_id = 0x1002;
|
dev_select.vendor_id = 0x1002;
|
||||||
|
}
|
||||||
|
|
||||||
return vulkan_device_create_internal(ctx, &dev_select, 0, opts, flags);
|
return vulkan_device_create_internal(ctx, &dev_select, 0, opts, flags);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user