From d1a47e2290a3afc38acde19dde815be4d39765a2 Mon Sep 17 00:00:00 2001 From: mhoffman Date: Fri, 22 Jun 2007 13:03:40 +0000 Subject: integrating ff_bfin_get_unscaled_swscale into the system git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23605 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/Makefile | 4 +++- libswscale/swscale.c | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/libswscale/Makefile b/libswscale/Makefile index 95f90b7575..35a132c218 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -12,7 +12,9 @@ OBJS= swscale.o rgb2rgb.o OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o OBJS-$(CONFIG_GPL) += yuv2rgb.o -OBJS-$(ARCH_BFIN) += yuv2rgb_bfin.o +OBJS-$(ARCH_BFIN) += yuv2rgb_bfin.o \ + swscale_bfin.o \ + ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o HEADERS = swscale.h rgb2rgb.h diff --git a/libswscale/swscale.c b/libswscale/swscale.c index b53d2e52e4..1cda63b0bb 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2219,6 +2219,11 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH c->swScale= gray16swap; } +#ifdef ARCH_BFIN + if (flags & SWS_CPU_CAPS_BFIN) + ff_bfin_get_unscaled_swscale (c); +#endif + if (c->swScale){ if (flags&SWS_PRINT_INFO) av_log(c, AV_LOG_INFO, "SwScaler: using unscaled %s -> %s special converter\n", -- cgit v1.2.3