mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
avutil/hwcontext_d3d12va: remove unused variables
Removes -Wunused-variable warnings. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
4ea6121f18
commit
1747c2fc33
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user