mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/d3d12va_av1.c: change the type for the ID3D12Resource_Map mapped_data argument
Fixes -Wincompatible-pointer-types warnings. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
cb6a488fba
commit
b4d871fdc8
|
@ -113,7 +113,7 @@ static int update_input_arguments(AVCodecContext *avctx, D3D12_VIDEO_DECODE_INPU
|
|||
AVD3D12VAFramesContext *frames_hwctx = frames_ctx->hwctx;
|
||||
const AV1DecContext *h = avctx->priv_data;
|
||||
AV1DecodePictureContext *ctx_pic = h->cur_frame.hwaccel_picture_private;
|
||||
uint8_t *mapped_data;
|
||||
void *mapped_data;
|
||||
|
||||
D3D12_VIDEO_DECODE_FRAME_ARGUMENT *args = &input_args->FrameArguments[input_args->NumFrameArguments++];
|
||||
args->Type = D3D12_VIDEO_DECODE_ARGUMENT_TYPE_SLICE_CONTROL;
|
||||
|
|
Loading…
Reference in New Issue