diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-07 01:22:52 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-22 13:30:13 +0200 |
commit | 3d716d38abdae1982e84e30becb57458244656bd (patch) | |
tree | dc68ec5d8a5a80511c5376bfd650a7bf52fe2992 /libavcodec/x86/audiodsp.asm | |
parent | fd98594a8831ce037a495b6d7e090bd8f81e83a1 (diff) | |
download | ffmpeg-3d716d38abdae1982e84e30becb57458244656bd.tar.gz |
avcodec/x86/audiodsp_init: Remove obsolete MMX(EXT) functions
x64 always has MMX, MMXEXT, SSE and SSE2 and this means
that some functions for MMX, MMXEXT and 3dnow are always
overridden by other functions (unless one e.g. explicitly
disables SSE2) for x64. So given that the only systems that
benefit from these functions are truely ancient 32bit x86s
they are removed.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86/audiodsp.asm')
-rw-r--r-- | libavcodec/x86/audiodsp.asm | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libavcodec/x86/audiodsp.asm b/libavcodec/x86/audiodsp.asm index de395e5fa8..b604b0443c 100644 --- a/libavcodec/x86/audiodsp.asm +++ b/libavcodec/x86/audiodsp.asm @@ -23,8 +23,8 @@ SECTION .text -%macro SCALARPRODUCT 0 ; int ff_scalarproduct_int16(int16_t *v1, int16_t *v2, int order) +INIT_XMM sse2 cglobal scalarproduct_int16, 3,3,3, v1, v2, order add orderd, orderd add v1q, orderq @@ -42,16 +42,7 @@ cglobal scalarproduct_int16, 3,3,3, v1, v2, order jl .loop HADDD m2, m0 movd eax, m2 -%if mmsize == 8 - emms -%endif RET -%endmacro - -INIT_MMX mmxext -SCALARPRODUCT -INIT_XMM sse2 -SCALARPRODUCT ;----------------------------------------------------------------------------- @@ -117,8 +108,6 @@ cglobal vector_clip_int32%5, 5,5,%1, dst, src, min, max, len REP_RET %endmacro -INIT_MMX mmx -VECTOR_CLIP_INT32 0, 1, 0, 0 INIT_XMM sse2 VECTOR_CLIP_INT32 6, 1, 0, 0, _int VECTOR_CLIP_INT32 6, 2, 0, 1 |