diff options
author | Mans Rullgard <mans@mansr.com> | 2012-12-01 16:41:39 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-12-07 16:54:03 +0000 |
commit | a7831d509f8db397f74895dca3dd3b4ac791ef03 (patch) | |
tree | 22cac51b499ab8c14039ac79cc78b8b75c6089f3 /libavcodec/arm/vp56_arith.h | |
parent | 7f2b3dcabd108926bde819ad574017f4161d1546 (diff) | |
download | ffmpeg-a7831d509f8db397f74895dca3dd3b4ac791ef03.tar.gz |
arm: use HAVE*_INLINE/EXTERNAL macros for conditional compilation
These macros reflect the actual capabilities required here.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/vp56_arith.h')
-rw-r--r-- | libavcodec/arm/vp56_arith.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/vp56_arith.h b/libavcodec/arm/vp56_arith.h index d1a8837000..6bc9456336 100644 --- a/libavcodec/arm/vp56_arith.h +++ b/libavcodec/arm/vp56_arith.h @@ -37,7 +37,7 @@ # define U(x) #endif -#if HAVE_ARMV6 && HAVE_INLINE_ASM +#if HAVE_ARMV6_INLINE #define vp56_rac_get_prob vp56_rac_get_prob_armv6 static inline int vp56_rac_get_prob_armv6(VP56RangeCoder *c, int pr) |