diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-16 15:54:01 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-16 15:54:01 +0000 |
commit | 1c6f46be03a6c23c9daba19c77b53aac6c1d83f2 (patch) | |
tree | 7f591e5df6ede0171c6367ba21238e987c822452 /libavcodec/arm/aac.h | |
parent | 26147d368be25288b46afc67ed404adf5814f715 (diff) | |
download | ffmpeg-1c6f46be03a6c23c9daba19c77b53aac6c1d83f2.tar.gz |
Add missing guards and includes to arm/aac.h
Originally committed as revision 21247 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/aac.h')
-rw-r--r-- | libavcodec/arm/aac.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/arm/aac.h b/libavcodec/arm/aac.h index 2ccb8cfb93..390cdbfcf9 100644 --- a/libavcodec/arm/aac.h +++ b/libavcodec/arm/aac.h @@ -18,6 +18,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVCODEC_ARM_AAC_H +#define AVCODEC_ARM_AAC_H + +#include "config.h" + #if HAVE_NEON && HAVE_INLINE_ASM #define VMUL2 VMUL2 @@ -128,3 +133,5 @@ static inline float *VMUL4S(float *dst, const float *v, unsigned idx, } #endif /* HAVE_NEON && HAVE_INLINE_ASM */ + +#endif /* AVCODEC_ARM_AAC_H */ |