diff options
author | Måns Rullgård | 2008-12-17 00:54:54 +0000 |
---|---|---|
committer | Måns Rullgård | 2008-12-17 00:54:54 +0000 |
commit | a2fc0f6a6ddf884ace3c96a0d4f09f0932e6db32 (patch) | |
tree | 44b807b924e29465a6aed924fcb53c719a83a956 /libavutil | |
parent | 2600f8c86dcaa411a0485b1518e5e1592374aaf6 (diff) |
ARM: replace "armv4l" with "arm"
Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/bswap.h | 2 | ||||
-rw-r--r-- | libavutil/internal.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/bswap.h b/libavutil/bswap.h index c14676e6ab..100ed1c262 100644 --- a/libavutil/bswap.h +++ b/libavutil/bswap.h @@ -30,7 +30,7 @@ #include "config.h" #include "common.h" -#if defined(ARCH_ARMV4L) +#if defined(ARCH_ARM) # include "arm/bswap.h" #elif defined(ARCH_BFIN) # include "bfin/bswap.h" diff --git a/libavutil/internal.h b/libavutil/internal.h index 5ade1affa7..5615c06c5f 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -148,7 +148,7 @@ static inline av_const int FASTDIV(int a, int b) : "=&r"(r), "=&r"(t) : "r"(a), "r"(b), "r"(ff_inverse)); return r; } -#elif defined(ARCH_ARMV4L) +#elif defined(ARCH_ARM) # define FASTDIV(a,b) \ ({\ int ret,dmy;\ |