[SCM] libav/experimental: uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:44:22 UTC 2013


The following commit has been merged in the experimental branch:
commit 59d8efb3403f58a8b1feec59ef408fb33c907abb
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Tue Jun 7 14:12:15 2005 +0000

    uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
    
    Originally committed as revision 4356 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/common.h b/libavcodec/common.h
index 75ef127..7d5edb4 100644
--- a/libavcodec/common.h
+++ b/libavcodec/common.h
@@ -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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list