summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-21 12:07:16 -0300
committerJames Almer <jamrial@gmail.com>2017-10-21 12:15:57 -0300
commit2904db90458a1253e4aea6844ba9a59ac11923b6 (patch)
treeb8410cd30199ff45585fce360fe6ec75a5fdcca3 /libavfilter
parentede5ddb58683b1186271bf2144843adaff3390c9 (diff)
parent994c4bc10751e39c7ed9f67ffd0c0dea5223daf2 (diff)
Merge commit '994c4bc10751e39c7ed9f67ffd0c0dea5223daf2'
* commit '994c4bc10751e39c7ed9f67ffd0c0dea5223daf2': x86util: Port all macros to cpuflags See d5f8a642f6eb1c6e305c41dabddd0fd36ffb3f77 Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/x86/yadif-16.asm24
1 files changed, 0 insertions, 24 deletions
diff --git a/libavfilter/x86/yadif-16.asm b/libavfilter/x86/yadif-16.asm
index 79d127dfaa..9053b378a5 100644
--- a/libavfilter/x86/yadif-16.asm
+++ b/libavfilter/x86/yadif-16.asm
@@ -54,30 +54,6 @@ SECTION .text
%endif
%endmacro
-%macro PMINSD 3
-%if cpuflag(sse4)
- pminsd %1, %2
-%else
- mova %3, %2
- pcmpgtd %3, %1
- pand %1, %3
- pandn %3, %2
- por %1, %3
-%endif
-%endmacro
-
-%macro PMAXSD 3
-%if cpuflag(sse4)
- pmaxsd %1, %2
-%else
- mova %3, %1
- pcmpgtd %3, %2
- pand %1, %3
- pandn %3, %2
- por %1, %3
-%endif
-%endmacro
-
%macro PMAXUW 2
%if cpuflag(sse4)
pmaxuw %1, %2