From 89a63012c5f8994adbf02907a892a7503d2af45a Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 30 May 2010 08:44:05 +0000 Subject: [PATCH] Rename yuv2rgb_template2.c --> yuv2rgb_template.c now that the other is gone. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31279 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/x86/yuv2rgb_mmx.c | 4 ++-- libswscale/x86/{yuv2rgb_template2.c => yuv2rgb_template.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename libswscale/x86/{yuv2rgb_template2.c => yuv2rgb_template.c} (100%) diff --git a/libswscale/x86/yuv2rgb_mmx.c b/libswscale/x86/yuv2rgb_mmx.c index acd1742d62..6478311f00 100644 --- a/libswscale/x86/yuv2rgb_mmx.c +++ b/libswscale/x86/yuv2rgb_mmx.c @@ -52,14 +52,14 @@ DECLARE_ASM_CONST(8, uint64_t, pb_07) = 0x0707070707070707ULL; #define HAVE_MMX2 0 #define HAVE_AMD3DNOW 0 #define RENAME(a) a ## _MMX -#include "yuv2rgb_template2.c" +#include "yuv2rgb_template.c" //MMX2 versions #undef RENAME #undef HAVE_MMX2 #define HAVE_MMX2 1 #define RENAME(a) a ## _MMX2 -#include "yuv2rgb_template2.c" +#include "yuv2rgb_template.c" SwsFunc ff_yuv2rgb_init_mmx(SwsContext *c) { diff --git a/libswscale/x86/yuv2rgb_template2.c b/libswscale/x86/yuv2rgb_template.c similarity index 100% rename from libswscale/x86/yuv2rgb_template2.c rename to libswscale/x86/yuv2rgb_template.c