From b616b0470406add76fd89ae09f326be4cc41d96b Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 3 Nov 2022 19:21:29 +0100 Subject: [PATCH] swscale/utils: Remove obsolete 3DNow reference swscale does not use 3DNow any more since commit 608319a311a31f7d85333a7b08286c00be38eab6. Signed-off-by: Andreas Rheinhardt --- libswscale/utils.c | 2 -- 1 file changed, 2 deletions(-) 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))