mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +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;
|
||||
CUdeviceptr srcDevice;
|
||||
CUarray srcArray;
|
||||
guint srcPitch;
|
||||
gsize srcPitch;
|
||||
|
||||
gsize dstXInBytes;
|
||||
gsize dstY;
|
||||
|
|
Loading…
Reference in a new issue