mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavu/hwcontext_qsv: silence the warning
libavutil/hwcontext_qsv.c: In function ‘qsv_map_to’: libavutil/hwcontext_qsv.c:1905:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
This commit is contained in:
parent
a105b11a9d
commit
e63d9ba007
@ -1902,7 +1902,7 @@ static int qsv_map_to(AVHWFramesContext *dst_ctx,
|
||||
case AV_PIX_FMT_VAAPI:
|
||||
{
|
||||
mfxHDLPair *pair = (mfxHDLPair*)hwctx->surfaces[i].Data.MemId;
|
||||
if (*(VASurfaceID*)pair->first == (VASurfaceID)src->data[3]) {
|
||||
if (*(VASurfaceID*)pair->first == (VASurfaceID)(uintptr_t)src->data[3]) {
|
||||
index = i;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user