From 652f5185945c8405fc57aed353286858df8d066f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 8 Jul 2012 19:16:20 +0200 Subject: x86: mmx2 ---> mmxext in comments and messages --- libswscale/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libswscale/utils.c') diff --git a/libswscale/utils.c b/libswscale/utils.c index f68f1207c4..9e5ebac72e 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -616,7 +616,7 @@ static int initMMX2HScaler(int dstW, int xInc, uint8_t *filterCode, int xpos, i; // create an optimized horizontal scaling routine - /* This scaler is made of runtime-generated MMX2 code using specially tuned + /* This scaler is made of runtime-generated MMXEXT code using specially tuned * pshufw instructions. For every four output pixels, if four input pixels * are enough for the fast bilinear scaling, then a chunk of fragmentB is * used. If five input pixels are needed, then a chunk of fragmentA is used. @@ -1007,7 +1007,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, && (flags & SWS_FAST_BILINEAR)) { if (flags & SWS_PRINT_INFO) av_log(c, AV_LOG_INFO, - "output width is not a multiple of 32 -> no MMX2 scaler\n"); + "output width is not a multiple of 32 -> no MMXEXT scaler\n"); } if (usesHFilter) c->canMMX2BeUsed = 0; @@ -1237,7 +1237,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, sws_format_name(dstFormat)); if (INLINE_MMXEXT(cpu_flags)) - av_log(c, AV_LOG_INFO, "using MMX2\n"); + av_log(c, AV_LOG_INFO, "using MMXEXT\n"); else if (INLINE_AMD3DNOW(cpu_flags)) av_log(c, AV_LOG_INFO, "using 3DNOW\n"); else if (INLINE_MMX(cpu_flags)) -- cgit v1.2.3