diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-09 17:39:19 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-09 17:39:19 +0000 |
commit | 2ed6f399440a9f9fa358a96293c6797c2ebd0aaf (patch) | |
tree | ea8d954cee507834abd9e4b233517a0b7864a633 /libavutil/arm | |
parent | 19fcd66c31b880487e477dd45501eb91b9c9fdfe (diff) | |
download | ffmpeg-2ed6f399440a9f9fa358a96293c6797c2ebd0aaf.tar.gz |
Replace many includes of libavutil/common.h with what is actually needed
This reduces the number of false dependencies on header files and
speeds up compilation.
Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/arm')
-rw-r--r-- | libavutil/arm/bswap.h | 2 | ||||
-rw-r--r-- | libavutil/arm/intmath.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/arm/bswap.h b/libavutil/arm/bswap.h index 87dd8dd06c..9126350716 100644 --- a/libavutil/arm/bswap.h +++ b/libavutil/arm/bswap.h @@ -21,7 +21,7 @@ #include <stdint.h> #include "config.h" -#include "libavutil/common.h" +#include "libavutil/attributes.h" #ifdef __ARMCC_VERSION diff --git a/libavutil/arm/intmath.h b/libavutil/arm/intmath.h index 21aef2a478..48a05eaa1b 100644 --- a/libavutil/arm/intmath.h +++ b/libavutil/arm/intmath.h @@ -22,7 +22,7 @@ #define AVUTIL_ARM_INTMATH_H #include "config.h" -#include "libavutil/common.h" +#include "libavutil/attributes.h" #if HAVE_INLINE_ASM |