diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-20 15:29:32 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-20 17:26:37 +0100 |
commit | ebe46b8063ae2e1ae77b6a83f6408c66e20a0728 (patch) | |
tree | 4e9032297c2d5abfef2b1657559ae6d279c8f1ab /libavutil/intmath.h | |
parent | 0f13cd3187192ba0cc2b043430de6e279e7b97c3 (diff) | |
download | ffmpeg-ebe46b8063ae2e1ae77b6a83f6408c66e20a0728.tar.gz |
ARM: reinstate optimised intmath.h
Use of the ARM optimised intmath.h was accidentally dropped in 9734b8b.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil/intmath.h')
-rw-r--r-- | libavutil/intmath.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/intmath.h b/libavutil/intmath.h index b4b87e6059..2cb313240b 100644 --- a/libavutil/intmath.h +++ b/libavutil/intmath.h @@ -26,6 +26,10 @@ #include "config.h" #include "attributes.h" +#if ARCH_ARM +# include "arm/intmath.h" +#endif + /** * @addtogroup lavu_internal * @{ |