[FFmpeg-cvslog] compat/cuda: correct ushort4 to use ushort

Matt Oliver git at videolan.org
Mon Feb 22 18:12:00 EET 2021


ffmpeg | branch: master | Matt Oliver <protogonoi at gmail.com> | Sat Feb 13 02:58:25 2021 +1100| [b57037d663415338b3684f0e6164acca92f0d94a] | committer: Timo Rothenpieler

compat/cuda: correct ushort4 to use ushort

Signed-off-by: Timo Rothenpieler <timo at rothenpieler.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b57037d663415338b3684f0e6164acca92f0d94a
---

 compat/cuda/cuda_runtime.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the ffmpeg-cvslog mailing list