1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

lavu/hwcontext_qsv: fix memory leak for d3d11va impl

Signed-off-by: Tong Wu <tong1.wu@intel.com>
This commit is contained in:
Tong Wu
2023-06-19 14:15:08 +08:00
committed by Haihao Xiang
parent 28ed898ac6
commit 8ea31f694a

View File

@@ -665,6 +665,7 @@ static mfxStatus frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
static int qsv_d3d11_update_config(void *ctx, mfxHDL handle, mfxConfig cfg) static int qsv_d3d11_update_config(void *ctx, mfxHDL handle, mfxConfig cfg)
{ {
int ret = AVERROR_UNKNOWN;
#if CONFIG_D3D11VA #if CONFIG_D3D11VA
mfxStatus sts; mfxStatus sts;
IDXGIAdapter *pDXGIAdapter; IDXGIAdapter *pDXGIAdapter;
@@ -679,7 +680,8 @@ static int qsv_d3d11_update_config(void *ctx, mfxHDL handle, mfxConfig cfg)
hr = IDXGIDevice_GetAdapter(pDXGIDevice, &pDXGIAdapter); hr = IDXGIDevice_GetAdapter(pDXGIDevice, &pDXGIAdapter);
if (FAILED(hr)) { if (FAILED(hr)) {
av_log(ctx, AV_LOG_ERROR, "Error IDXGIDevice_GetAdapter %d\n", hr); av_log(ctx, AV_LOG_ERROR, "Error IDXGIDevice_GetAdapter %d\n", hr);
goto fail; IDXGIDevice_Release(pDXGIDevice);
return ret;
} }
hr = IDXGIAdapter_GetDesc(pDXGIAdapter, &adapterDesc); hr = IDXGIAdapter_GetDesc(pDXGIAdapter, &adapterDesc);
@@ -689,7 +691,7 @@ static int qsv_d3d11_update_config(void *ctx, mfxHDL handle, mfxConfig cfg)
} }
} else { } else {
av_log(ctx, AV_LOG_ERROR, "Error ID3D11Device_QueryInterface %d\n", hr); av_log(ctx, AV_LOG_ERROR, "Error ID3D11Device_QueryInterface %d\n", hr);
goto fail; return ret;
} }
impl_value.Type = MFX_VARIANT_TYPE_U16; impl_value.Type = MFX_VARIANT_TYPE_U16;
@@ -722,11 +724,13 @@ static int qsv_d3d11_update_config(void *ctx, mfxHDL handle, mfxConfig cfg)
goto fail; goto fail;
} }
return 0; ret = 0;
fail: fail:
IDXGIAdapter_Release(pDXGIAdapter);
IDXGIDevice_Release(pDXGIDevice);
#endif #endif
return AVERROR_UNKNOWN; return ret;
} }
static int qsv_d3d9_update_config(void *ctx, mfxHDL handle, mfxConfig cfg) static int qsv_d3d9_update_config(void *ctx, mfxHDL handle, mfxConfig cfg)