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:
Seungha Yang 2019-07-30 11:06:43 +09:00
parent 831b124976
commit 3faf439347

View file

@ -64,7 +64,7 @@ typedef struct
gconstpointer srcHost;
CUdeviceptr srcDevice;
CUarray srcArray;
guint srcPitch;
gsize srcPitch;
gsize dstXInBytes;
gsize dstY;