[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec common.h,1.150,1.151

Michael Niedermayer CVS michael
Tue Jun 7 16:12:18 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv22969

Modified Files:
	common.h 
Log Message:
uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)


Index: common.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/common.h,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- common.h	21 May 2005 21:37:07 -0000	1.150
+++ common.h	7 Jun 2005 14:12:15 -0000	1.151
@@ -125,13 +125,13 @@
 #endif
 
 #ifdef EMULATE_FAST_INT
-/* note that we don't emulate 64bit ints */
 typedef signed char int_fast8_t;
 typedef signed int  int_fast16_t;
 typedef signed int  int_fast32_t;
 typedef unsigned char uint_fast8_t;
 typedef unsigned int  uint_fast16_t;
 typedef unsigned int  uint_fast32_t;
+typedef uint64_t      uint_fast64_t;
 #endif
 
 #ifndef INT_BIT





More information about the ffmpeg-cvslog mailing list