OSDN Git Service

Fix make checkheaders.
authorDiego Biurrun <diego@biurrun.de>
Thu, 27 Dec 2007 12:56:49 +0000 (12:56 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 27 Dec 2007 12:56:49 +0000 (12:56 +0000)
Originally committed as revision 11331 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ppc/dsputil_altivec.h
libavcodec/ppc/gcc_fixes.h
libavcodec/ppc/imgresample_altivec.h
libavcodec/ppc/util_altivec.h

index ef75c40..1dd3259 100644 (file)
@@ -23,6 +23,8 @@
 #ifndef FFMPEG_DSPUTIL_ALTIVEC_H
 #define FFMPEG_DSPUTIL_ALTIVEC_H
 
+#include <stdint.h>
+
 #include "dsputil_ppc.h"
 
 extern int has_altivec(void);
index 7edbe74..c81b4ed 100644 (file)
@@ -23,6 +23,8 @@
 #ifndef FFMPEG_GCC_FIXES_H
 #define FFMPEG_GCC_FIXES_H
 
+#include "config.h"
+
 #ifdef HAVE_ALTIVEC_H
 #include <altivec.h>
 #endif
index f27d9cb..538c1be 100644 (file)
@@ -19,6 +19,8 @@
 #ifndef FFMPEG_IMGRESAMPLE_ALTIVEC_H
 #define FFMPEG_IMGRESAMPLE_ALTIVEC_H
 
+#include <stdint.h>
+
 void v_resample16_altivec(uint8_t *dst, int dst_width, const uint8_t *src,
                           int wrap, int16_t *filter);
 #endif /* FFMPEG_IMGRESAMPLE_ALTIVEC_H */
index ed029b4..a534df9 100644 (file)
 #ifndef FFMPEG_UTIL_ALTIVEC_H
 #define FFMPEG_UTIL_ALTIVEC_H
 
+#include <stdint.h>
+
+#include "config.h"
+
+#ifdef HAVE_ALTIVEC_H
+#include <altivec.h>
+#endif
+
 // used to build registers permutation vectors (vcprm)
 // the 's' are for words in the _s_econd vector
 #define WORD_0 0x00,0x01,0x02,0x03