summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-10-29 23:43:55 +0000
committerDiego Biurrun <diego@biurrun.de>2008-10-29 23:43:55 +0000
commit01f54021dcccc74292f29d236d823f3539a55a43 (patch)
tree00a3335f156192b2306499d3728284847401b6cd /libavcodec
parenta9a8c830cfbcbf898ae52429a389c88bb7912407 (diff)
Add missing headers to pass 'make checkheaders'.
Originally committed as revision 15745 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/armv4l/mathops.h3
-rw-r--r--libavcodec/i386/idct_xvid.h2
2 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/armv4l/mathops.h b/libavcodec/armv4l/mathops.h
index 5364833b78..e680dce071 100644
--- a/libavcodec/armv4l/mathops.h
+++ b/libavcodec/armv4l/mathops.h
@@ -22,6 +22,9 @@
#ifndef AVCODEC_ARMV4L_MATHOPS_H
#define AVCODEC_ARMV4L_MATHOPS_H
+#include <stdint.h>
+#include "libavutil/common.h"
+
#ifdef FRAC_BITS
# define MULL(a, b) \
({ int lo, hi;\
diff --git a/libavcodec/i386/idct_xvid.h b/libavcodec/i386/idct_xvid.h
index 2051ebd591..0bf45d5d11 100644
--- a/libavcodec/i386/idct_xvid.h
+++ b/libavcodec/i386/idct_xvid.h
@@ -26,6 +26,8 @@
#ifndef AVCODEC_I386_IDCT_XVID_H
#define AVCODEC_I386_IDCT_XVID_H
+#include <stdint.h>
+
void ff_idct_xvid_mmx(short *block);
void ff_idct_xvid_mmx2(short *block);
void ff_idct_xvid_sse2(short *block);