diff options
author | Matt Oliver <protogonoi@gmail.com> | 2021-02-13 02:58:25 +1100 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2021-02-22 17:03:52 +0100 |
commit | b57037d663415338b3684f0e6164acca92f0d94a (patch) | |
tree | 2cc3e36e492b74749e6983ce281bec547635c11b /compat/cuda | |
parent | b5d95998ffecafb20811604d36224f8b9dfdeefc (diff) | |
download | ffmpeg-b57037d663415338b3684f0e6164acca92f0d94a.tar.gz |
compat/cuda: correct ushort4 to use ushort
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Diffstat (limited to 'compat/cuda')
-rw-r--r-- | compat/cuda/cuda_runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/cuda/cuda_runtime.h b/compat/cuda/cuda_runtime.h index 0bf3de85d3..c5450b2542 100644 --- a/compat/cuda/cuda_runtime.h +++ b/compat/cuda/cuda_runtime.h @@ -73,7 +73,7 @@ typedef struct __device_builtin__ __align__(4) uchar4 typedef struct __device_builtin__ __align__(8) ushort4 { - unsigned char x, y, z, w; + unsigned short x, y, z, w; } ushort4; typedef struct __device_builtin__ __align__(16) int4 |