1
0
Fork 0

avutil/hwcontext_d3d12va: remove unused variables

Removes -Wunused-variable warnings.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-12-21 09:32:57 -03:00
parent 4ea6121f18
commit 1747c2fc33
1 changed files with 2 additions and 6 deletions

View File

@ -164,8 +164,7 @@ fail:
static void d3d12va_frames_uninit(AVHWFramesContext *ctx)
{
AVD3D12VAFramesContext *frames_hwctx = ctx->hwctx;
D3D12VAFramesContext *s = ctx->internal->priv;
D3D12VAFramesContext *s = ctx->internal->priv;
D3D12_OBJECT_RELEASE(s->sync_ctx.fence);
if (s->sync_ctx.event)
@ -271,9 +270,7 @@ fail:
static int d3d12va_frames_init(AVHWFramesContext *ctx)
{
AVD3D12VAFramesContext *hwctx = ctx->hwctx;
AVD3D12VADeviceContext *device_hwctx = ctx->device_ctx->hwctx;
D3D12VAFramesContext *s = ctx->internal->priv;
AVD3D12VAFramesContext *hwctx = ctx->hwctx;
int i;
for (i = 0; i < FF_ARRAY_ELEMS(supported_formats); i++) {
@ -326,7 +323,6 @@ static int d3d12va_transfer_get_formats(AVHWFramesContext *ctx,
enum AVHWFrameTransferDirection dir,
enum AVPixelFormat **formats)
{
D3D12VAFramesContext *s = ctx->internal->priv;
enum AVPixelFormat *fmts;
fmts = av_malloc_array(2, sizeof(*fmts));