avcodec/d3d12va_decode: delete an empty line and fix a fuction alignment

Signed-off-by: Tong Wu <tong1.wu@intel.com>
This commit is contained in:
Tong Wu 2023-12-28 11:10:39 +08:00 committed by Haihao Xiang
parent d18ed2ddb5
commit 83e0fcbe03
1 changed files with 1 additions and 2 deletions

View File

@ -324,11 +324,10 @@ int ff_d3d12va_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
ctx->objects_queue = av_fifo_alloc2(D3D12VA_VIDEO_DEC_ASYNC_DEPTH,
sizeof(HelperObjects), AV_FIFO_FLAG_AUTO_GROW);
sizeof(HelperObjects), AV_FIFO_FLAG_AUTO_GROW);
if (!ctx->objects_queue)
return AVERROR(ENOMEM);
DX_CHECK(ID3D12Device_CreateFence(ctx->device_ctx->device, 0, D3D12_FENCE_FLAG_NONE,
&IID_ID3D12Fence, (void **)&ctx->sync_ctx.fence));