diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 11:10:20 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 11:10:20 +0000 |
commit | c38e75fc52159a5369ff0516ce55d0cbddbdc18f (patch) | |
tree | 6213bdeabb2a445322ed34d93210dbe8275d1a7b | |
parent | def1e277b978179c6ca20734cd68e806c18d7028 (diff) | |
download | ffmpeg-c38e75fc52159a5369ff0516ce55d0cbddbdc18f.tar.gz |
Add required stdint.h header.
Originally committed as revision 13096 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/x86_cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/x86_cpu.h b/libavutil/x86_cpu.h index 43619ad79d..444d33511b 100644 --- a/libavutil/x86_cpu.h +++ b/libavutil/x86_cpu.h @@ -21,6 +21,7 @@ #ifndef FFMPEG_X86CPU_H #define FFMPEG_X86CPU_H +#include <stdint.h> #include "config.h" #ifdef ARCH_X86_64 |