diff options
author | Arpi <arpi@thot.banki.hu> | 2001-12-09 12:04:09 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2001-12-09 12:04:09 +0000 |
commit | d962f6fd3a95e3345a7c17df938c75f67a6c6363 (patch) | |
tree | ece30d9dc8264546709087cc5050833909342877 /libavcodec/Makefile | |
parent | e3d2500fe498289a878b956f6efb4995438c9515 (diff) | |
download | ffmpeg-d962f6fd3a95e3345a7c17df938c75f67a6c6363.tar.gz |
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
Originally committed as revision 234 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7c3133a196..5dbd4ed8c3 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -6,7 +6,7 @@ LDFLAGS= -g OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \ mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ motion_est.o imgconvert.o imgresample.o msmpeg4.o \ - mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o + mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o ASM_OBJS= # currently using libac3 for ac3 decoding @@ -20,7 +20,8 @@ endif ifeq ($(TARGET_MMX),yes) OBJS += i386/fdct_mmx.o i386/cputest.o \ i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ - i386/idct_mmx.o i386/motion_est_mmx.o + i386/idct_mmx.o i386/motion_est_mmx.o \ + i386/simple_idct_mmx.o endif # armv4l specific stuff |