mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
nvcodec: Fix broken ABI in cuda stub header to fix nvenc with opengl
Fix the broken ABI introduced by the commit 367e742e5d
From CUDA Toolkit 3.2, size_t has been used in CUDA_MEMCPY2D structure
instead of unsigned int.
This commit is contained in:
parent
831b124976
commit
3faf439347
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ typedef struct
|
||||||
gconstpointer srcHost;
|
gconstpointer srcHost;
|
||||||
CUdeviceptr srcDevice;
|
CUdeviceptr srcDevice;
|
||||||
CUarray srcArray;
|
CUarray srcArray;
|
||||||
guint srcPitch;
|
gsize srcPitch;
|
||||||
|
|
||||||
gsize dstXInBytes;
|
gsize dstXInBytes;
|
||||||
gsize dstY;
|
gsize dstY;
|
||||||
|
|
Loading…
Reference in a new issue