[FFmpeg-cvslog] sws: fix warning: cast from pointer to integer of different size

Michael Niedermayer git at videolan.org
Sat Dec 29 20:55:20 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Dec 29 20:50:43 2012 +0100| [c77eb4ee9025a01ce6b8276eed8e32f21fc74ccc] | committer: Michael Niedermayer

sws: fix warning: cast from pointer to integer of different size

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libswscale/swscale.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 442d88b..2c9e3da 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -416,7 +416,8 @@ static int swScale(SwsContext *c, const uint8_t *src[],
         }
     }
 
-    if ((int)dst[0]%16 || (int)dst[1]%16 || (int)dst[2]%16 || (int)src[0]%16 || (int)src[1]%16 || (int)src[2]%16
+    if (   (uintptr_t)dst[0]%16 || (uintptr_t)dst[1]%16 || (uintptr_t)dst[2]%16
+        || (uintptr_t)src[0]%16 || (uintptr_t)src[1]%16 || (uintptr_t)src[2]%16
         || dstStride[0]%16 || dstStride[1]%16 || dstStride[2]%16 || dstStride[3]%16
         || srcStride[0]%16 || srcStride[1]%16 || srcStride[2]%16 || srcStride[3]%16
     ) {



More information about the ffmpeg-cvslog mailing list