[FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_d3d11va: correct sizeof IDirect3DSurface9
Michael Niedermayer
michael at niedermayer.cc
Sun Jun 9 18:47:43 EEST 2024
Fixes: CID1591944 Wrong sizeof argument
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavutil/hwcontext_dxva2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/hwcontext_dxva2.c b/libavutil/hwcontext_dxva2.c
index 03cb739a7f2..0b76966ebfb 100644
--- a/libavutil/hwcontext_dxva2.c
+++ b/libavutil/hwcontext_dxva2.c
@@ -147,7 +147,7 @@ static AVBufferRef *dxva2_pool_alloc(void *opaque, size_t size)
if (s->nb_surfaces_used < hwctx->nb_surfaces) {
s->nb_surfaces_used++;
return av_buffer_create((uint8_t*)s->surfaces_internal[s->nb_surfaces_used - 1],
- sizeof(*hwctx->surfaces), dxva2_pool_release_dummy, 0, 0);
+ sizeof(**hwctx->surfaces), dxva2_pool_release_dummy, 0, 0);
}
return NULL;
--
2.45.2
More information about the ffmpeg-devel
mailing list