diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-01 18:34:40 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-01 18:34:40 +0000 |
commit | 3cd52279c98910972371723c0654facfe3a1b2d1 (patch) | |
tree | c1610e5942ad850464d7faee1136252aa47f49e8 /libavutil/internal.h | |
parent | a63e5f1cced5c5fe65845c89bbd5ff798b7b9542 (diff) | |
download | ffmpeg-3cd52279c98910972371723c0654facfe3a1b2d1.tar.gz |
Use common define for x86_32 and x86_64.
Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r-- | libavutil/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 4f7e525cfd..1ed6d94b84 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -105,7 +105,7 @@ extern const uint32_t inverse[256]; -#if defined(ARCH_X86) || defined(ARCH_X86_64) +#if defined(ARCH_X86) # define FASTDIV(a,b) \ ({\ int ret,dmy;\ @@ -154,7 +154,7 @@ static inline int ff_sqrt(int a) return ret; } -#if defined(ARCH_X86) || defined(ARCH_X86_64) +#if defined(ARCH_X86) #define MASK_ABS(mask, level)\ asm volatile(\ "cdq \n\t"\ |