avcodec/dxva2: fix different 'const' qualifiers warning

Signed-off-by: Tong Wu <tong1.wu@intel.com>
This commit is contained in:
Tong Wu 2024-01-31 19:56:33 +08:00 committed by Haihao Xiang
parent 92ee7461c3
commit 82e8838165
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ unsigned ff_dxva2_get_surface_index(const AVCodecContext *avctx,
}
#endif
av_log(avctx, AV_LOG_WARNING, "Could not get surface index. Using 0 instead.\n");
av_log((AVCodecContext *)avctx, AV_LOG_WARNING, "Could not get surface index. Using 0 instead.\n");
return 0;
}