ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinha...@outlook.com> | Mon Jun 20 07:20:40 2022 +0200| [230ea38de143368729ee1cce47b3a87fbafad8e4] | committer: Andreas Rheinhardt
avcodec/x86/lossless_videoencdsp: Remove obsolete MMX function The only systems which benefit from ff_diff_bytes_mmx are truely ancient 32bit x86s as all other systems use at least the SSE2 versions (this includes all x64 cpus (which is why this code is restricted to x86-32)). Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=230ea38de143368729ee1cce47b3a87fbafad8e4 --- libavcodec/x86/lossless_videoencdsp.asm | 9 --------- libavcodec/x86/lossless_videoencdsp_init.c | 6 ------ 2 files changed, 15 deletions(-) diff --git a/libavcodec/x86/lossless_videoencdsp.asm b/libavcodec/x86/lossless_videoencdsp.asm index fb1204f0f1..2e1d01bc2c 100644 --- a/libavcodec/x86/lossless_videoencdsp.asm +++ b/libavcodec/x86/lossless_videoencdsp.asm @@ -113,15 +113,6 @@ cglobal diff_bytes, 4,5,2, dst, src1, src2, w REP_RET %endmacro -%if ARCH_X86_32 -INIT_MMX mmx -DIFF_BYTES_PROLOGUE - %define regsize mmsize - DIFF_BYTES_LOOP_PREP .skip_main_aa, .end_aa - DIFF_BYTES_BODY a, a -%undef i -%endif - INIT_XMM sse2 DIFF_BYTES_PROLOGUE %define regsize mmsize diff --git a/libavcodec/x86/lossless_videoencdsp_init.c b/libavcodec/x86/lossless_videoencdsp_init.c index 40407add52..b3efcfdcd7 100644 --- a/libavcodec/x86/lossless_videoencdsp_init.c +++ b/libavcodec/x86/lossless_videoencdsp_init.c @@ -29,8 +29,6 @@ #include "libavcodec/lossless_videoencdsp.h" #include "libavcodec/mathops.h" -void ff_diff_bytes_mmx(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, - intptr_t w); void ff_diff_bytes_sse2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, intptr_t w); void ff_diff_bytes_avx2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, @@ -87,10 +85,6 @@ av_cold void ff_llvidencdsp_init_x86(LLVidEncDSPContext *c) { av_unused int cpu_flags = av_get_cpu_flags(); - if (ARCH_X86_32 && EXTERNAL_MMX(cpu_flags)) { - c->diff_bytes = ff_diff_bytes_mmx; - } - #if HAVE_INLINE_ASM if (INLINE_MMXEXT(cpu_flags)) { c->sub_median_pred = sub_median_pred_mmxext; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".