diff options
author | BERO <bero@geocities.co.jp> | 2003-05-14 12:18:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-14 12:18:49 +0000 |
commit | 0c6bd2ea0a4de2d575d35e38149ec16ae31d3f49 (patch) | |
tree | 5f0cb3ed7c16aa9170101d34cb96a55a886f00cd /libavcodec/Makefile | |
parent | 891f64b33972bb35f64d0b7ae0928004ff278f5b (diff) | |
download | ffmpeg-0c6bd2ea0a4de2d575d35e38149ec16ae31d3f49.tar.gz |
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
Originally committed as revision 1877 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index ae76d0036a..787f73c042 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -124,6 +124,11 @@ OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ ppc/fft_altivec.o ppc/gmc_altivec.o endif +ifeq ($(TARGET_ARCH_SH4),yes) +OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o +endif + + SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) OBJS := $(OBJS) $(ASM_OBJS) @@ -179,6 +184,7 @@ clean: alpha/*.o alpha/*~ \ ppc/*.o ppc/*~ \ ps2/*.o ps2/*~ \ + sh4/*.o sh4/*~ \ liba52/*.o liba52/*~ \ apiexample $(TESTS) $(MAKE) -C libpostproc clean |