diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-08 19:28:57 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 01:04:55 +0100 |
commit | 588fafe7f3bdce1b7265b74320e9bdfad3e25960 (patch) | |
tree | 2f63a805c9281c8496e75270035e36ffef7ead04 /libavutil/x86 | |
parent | a65bdceb060628881578afb29df4eb222421381f (diff) | |
download | ffmpeg-588fafe7f3bdce1b7265b74320e9bdfad3e25960.tar.gz |
x86: MMX2 ---> MMXEXT in macro names
Diffstat (limited to 'libavutil/x86')
-rw-r--r-- | libavutil/x86/x86util.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index 3aac639543..d7ec5948e5 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -157,7 +157,7 @@ psubw %1, %2 %endmacro -%macro PABSW_MMX2 2 +%macro PABSW_MMXEXT 2 pxor %1, %1 psubw %1, %2 pmaxsw %1, %2 @@ -189,13 +189,13 @@ psubw %2, %4 %endmacro -%macro ABS1_MMX2 2 ; a, tmp +%macro ABS1_MMXEXT 2 ; a, tmp pxor %2, %2 psubw %2, %1 pmaxsw %1, %2 %endmacro -%macro ABS2_MMX2 4 ; a, b, tmp0, tmp1 +%macro ABS2_MMXEXT 4 ; a, b, tmp0, tmp1 pxor %3, %3 pxor %4, %4 psubw %3, %1 |