Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-11-03 21:21:29 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-11-09 19:39:00 +0300
commitb616b0470406add76fd89ae09f326be4cc41d96b (patch)
treeffe18038aaf70aff25e4f205fac566d9d78cf15b
parent4228f8ad493d22905406fe155303ef9f4f249d52 (diff)
swscale/utils: Remove obsolete 3DNow reference
swscale does not use 3DNow any more since commit 608319a311a31f7d85333a7b08286c00be38eab6. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libswscale/utils.c2
1 files changed, 0 insertions, 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))