]> git.sesse.net Git - ffmpeg/commit
avutil/hwcontext_d3d11va: fix type arguments passed to IDXGIAdapter2_GetDesc()
authorJames Almer <jamrial@gmail.com>
Mon, 23 Jul 2018 23:42:08 +0000 (20:42 -0300)
committerJames Almer <jamrial@gmail.com>
Wed, 25 Jul 2018 18:22:30 +0000 (15:22 -0300)
commit81a18f219e2ca0ec57144805dece1b72b73c692d
treec9766adeb730c3947ee9314bdaec6d3739030874
parentfa35ab80f31e269bd607044db2706b8b99e4ef5a
avutil/hwcontext_d3d11va: fix type arguments passed to IDXGIAdapter2_GetDesc()

libavutil/hwcontext_d3d11va.c: In function 'd3d11va_device_create':
libavutil/hwcontext_d3d11va.c:554:46: warning: passing argument 2 of 'pAdapter->lpVtbl->GetDesc' from incompatible pointer type [-Wincompatible-pointer-types]
         hr = IDXGIAdapter2_GetDesc(pAdapter, &desc);
                                              ^
libavutil/hwcontext_d3d11va.c:554:46: note: expected 'DXGI_ADAPTER_DESC * {aka struct DXGI_ADAPTER_DESC *}' but argument is of type 'DXGI_ADAPTER_DESC2 * {aka struct DXGI_ADAPTER_DESC2 *}'

Reviewed-by: Jean-Baptiste Kempf <jb@videolan.org>
Signed-off-by: James Almer <jamrial@gmail.com>
libavutil/hwcontext_d3d11va.c