diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-07 22:42:22 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-07 22:42:22 +0000 |
commit | de1ee36ab9e15d74bbaf0e11df37c558e5195e31 (patch) | |
tree | a10488c36091cd6df4921176237d27022f83a87e /libavcodec/Makefile | |
parent | fe97c87d654003d9ebb43f0f4e9ee4546cc8b34d (diff) | |
download | ffmpeg-de1ee36ab9e15d74bbaf0e11df37c558e5195e31.tar.gz |
added idct mmx
Originally committed as revision 43 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 9affbf8c1e..c345a650af 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -27,7 +27,8 @@ endif ifeq ($(TARGET_MMX),yes) ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o OBJS += i386/fdctdata.o i386/cputest.o \ - i386/dsputil_mmx.o i386/mpegvideo_mmx.o + i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ + i386/idct_mmx.o endif SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) @@ -74,7 +75,8 @@ apiexample: apiexample.c $(LIB) imgresample-test: imgresample.c $(CC) $(CFLAGS) -DTEST -o $@ $^ -dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o fdctref.o +dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o \ + fdctref.o jrevdct.o i386/idct_mmx.o $(CC) -o $@ $^ # |