diff options
author | James Almer <jamrial@gmail.com> | 2024-01-24 17:26:12 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-01-24 17:28:04 -0300 |
commit | 342cc1792f95dad455572dcd1b74cc63338fc447 (patch) | |
tree | 4a8ec4002a92b1e2a9dddf15157d09c8d9645a3a | |
parent | 04332ca35ef888fc3c0a00e69bfda66c2d6431a4 (diff) | |
download | ffmpeg-342cc1792f95dad455572dcd1b74cc63338fc447.tar.gz |
avcodec/d3d12va_h264: cast mapped_data to void* before passing it to mapped_data()
Fixes -Wincompatible-pointer-types warnings.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/d3d12va_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/d3d12va_h264.c b/libavcodec/d3d12va_h264.c index 24e1c523fa..b09ffcf148 100644 --- a/libavcodec/d3d12va_h264.c +++ b/libavcodec/d3d12va_h264.c @@ -117,7 +117,7 @@ static int update_input_arguments(AVCodecContext *avctx, D3D12_VIDEO_DECODE_INPU DXVA_Slice_H264_Short *slice; D3D12_VIDEO_DECODE_FRAME_ARGUMENT *args; - if (FAILED(ID3D12Resource_Map(buffer, 0, NULL, &mapped_data))) { + if (FAILED(ID3D12Resource_Map(buffer, 0, NULL, (void **)&mapped_data))) { av_log(avctx, AV_LOG_ERROR, "Failed to map D3D12 Buffer resource!\n"); return AVERROR(EINVAL); } |