From d3f3eea92d47c3c3250ffc7cf567ed44bf31615a Mon Sep 17 00:00:00 2001 From: Marc Hoffman Date: Sun, 13 May 2007 19:22:32 +0000 Subject: Blackfin optimized YUV420 to RGB CSC Color Space Converters. YUV2 -> RGB BGR for 565, 555 and 888 a.k.a. 24bit color. Speed-up compared to C version compiled with -O3 187.28% Patch by Marc Hoffman %mmh A pleasantst P com% Original thread: Date: May 9, 2007 2:46 AM Subject: [FFmpeg-devel] PATCH BlackFin yuv2rgb color space conversion Originally committed as revision 23307 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libswscale/Makefile') diff --git a/libswscale/Makefile b/libswscale/Makefile index f6adf2a514..dac331e474 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -12,6 +12,9 @@ OBJS= swscale.o rgb2rgb.o OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o OBJS-$(CONFIG_GPL) += yuv2rgb.o +OBJS-$(TARGET_ARCH_BFIN) += yuv2rgb_bfin.o +ASM_OBJS-$(TARGET_ARCH_BFIN) += internal_bfin.o + HEADERS = swscale.h rgb2rgb.h include ../common.mak -- cgit v1.2.3