diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-07 01:37:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-22 13:30:28 +0200 |
commit | d29a9c2aa68fc3eb6d61ff95c698e29316037583 (patch) | |
tree | fbd1f74a1505c2882e7821b974249d2b558a4c70 /libavcodec/x86/diracdsp.asm | |
parent | 3d716d38abdae1982e84e30becb57458244656bd (diff) | |
download | ffmpeg-d29a9c2aa68fc3eb6d61ff95c698e29316037583.tar.gz |
avcodec/x86/diracdsp: 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/diracdsp.asm')
-rw-r--r-- | libavcodec/x86/diracdsp.asm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/x86/diracdsp.asm b/libavcodec/x86/diracdsp.asm index 17145baf87..e5e2b11846 100644 --- a/libavcodec/x86/diracdsp.asm +++ b/libavcodec/x86/diracdsp.asm @@ -248,14 +248,6 @@ cglobal add_dirac_obmc%1_%2, 6,6,5, dst, src, stride, obmc, yblen %endm INIT_MMX -%if ARCH_X86_64 == 0 -PUT_RECT mmx -ADD_RECT mmx - -HPEL_FILTER mmx -ADD_OBMC 32, mmx -ADD_OBMC 16, mmx -%endif ADD_OBMC 8, mmx INIT_XMM |