diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 22:39:46 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-26 00:51:34 +0100 |
commit | 76b19a3984359b3be44d4f7e4e69b7b86729a622 (patch) | |
tree | ee381490bc907cd4fe0f2917467b8e5fcd1eb836 /libavcodec/arm | |
parent | d925cca95f5d2bb44632877d7f86e0df58275f52 (diff) | |
download | ffmpeg-76b19a3984359b3be44d4f7e4e69b7b86729a622.tar.gz |
Fix a number of incorrect intmath.h #includes.
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/dca.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/arm/dca.h b/libavcodec/arm/dca.h index 09b6e64baa..3e55e433c2 100644 --- a/libavcodec/arm/dca.h +++ b/libavcodec/arm/dca.h @@ -22,8 +22,9 @@ #define AVCODEC_ARM_DCA_H #include <stdint.h> + #include "config.h" -#include "libavutil/intmath.h" +#include "libavcodec/mathops.h" #if HAVE_ARMV6_INLINE && AV_GCC_VERSION_AT_LEAST(4,4) |