diff mbox series

[FFmpeg-devel,3/7] swscale/utils: Remove obsolete 3DNow reference

Message ID GV1P250MB0737CD29A3FC0BAFEFAC81018F3D9@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit b616b0470406add76fd89ae09f326be4cc41d96b
Headers show
Series [FFmpeg-devel,1/7] postproc/postprocess: Remove obsolete MMX(EXT)/3Dnow functions | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Nov. 6, 2022, 4:30 p.m. UTC
swscale does not use 3DNow any more since commit
608319a311a31f7d85333a7b08286c00be38eab6.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libswscale/utils.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/libswscale/utils.c b/libswscale/utils.c
index 45baa22b23..85640a143f 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1966,8 +1966,6 @@  av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
 
         if (INLINE_MMXEXT(cpu_flags))
             cpucaps = "MMXEXT";
-        else if (INLINE_AMD3DNOW(cpu_flags))
-            cpucaps = "3DNOW";
         else if (INLINE_MMX(cpu_flags))
             cpucaps = "MMX";
         else if (PPC_ALTIVEC(cpu_flags))