[Ffmpeg-cvslog] CVS: ffmpeg/libavutil common.h,1.163,1.164

Aurelien Jacobs CVS aurel
Sun Apr 30 19:49:13 CEST 2006


Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv603/libavutil

Modified Files:
	common.h 
Log Message:
clip_uint8 should return an uint8_t instead of an int (patch by Panagiotis Issaris < takis.issaris _at_ uhasselt.be >)

Index: common.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/common.h,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -d -r1.163 -r1.164
--- common.h	1 Apr 2006 22:29:20 -0000	1.163
+++ common.h	30 Apr 2006 17:49:11 -0000	1.164
@@ -437,7 +437,7 @@
         return a;
 }
 
-static inline int clip_uint8(int a)
+static inline uint8_t clip_uint8(int a)
 {
     if (a&(~255)) return (-a)>>31;
     else          return a;





More information about the ffmpeg-cvslog mailing list