mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
d3d11device: Fix adapter LUID comparison in wrapped device mode
Fix integer type mismatching Fixes: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3382 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6367>
This commit is contained in:
parent
f04ea0c1be
commit
6e9249b078
1 changed files with 1 additions and 2 deletions
|
@ -833,7 +833,6 @@ _gst_d3d11_device_get_adapter (const GstD3D11DeviceConstructData * data,
|
|||
ComPtr < IDXGIDevice > dxgi_device;
|
||||
ComPtr < IDXGIAdapter > adapter;
|
||||
ID3D11Device *device = data->data.device;
|
||||
guint luid;
|
||||
|
||||
hr = device->QueryInterface (IID_PPV_ARGS (&dxgi_device));
|
||||
if (FAILED (hr))
|
||||
|
@ -851,7 +850,7 @@ _gst_d3d11_device_get_adapter (const GstD3D11DeviceConstructData * data,
|
|||
if (FAILED (hr))
|
||||
return hr;
|
||||
|
||||
luid = gst_d3d11_luid_to_int64 (&desc.AdapterLuid);
|
||||
auto luid = gst_d3d11_luid_to_int64 (&desc.AdapterLuid);
|
||||
|
||||
for (guint i = 0;; i++) {
|
||||
DXGI_ADAPTER_DESC tmp_desc;
|
||||
|
|
Loading…
Reference in a new issue