Mercurial > libavcodec.hg
comparison Makefile @ 174:ac5075a55488 libavcodec
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
author | arpi_esp |
---|---|
date | Sun, 09 Dec 2001 12:04:09 +0000 |
parents | 8b7772ef26a0 |
children | 73df666cacc7 |
comparison
equal
deleted
inserted
replaced
173:37eaaa9596cc | 174:ac5075a55488 |
---|---|
4 LDFLAGS= -g | 4 LDFLAGS= -g |
5 | 5 |
6 OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \ | 6 OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \ |
7 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ | 7 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
8 motion_est.o imgconvert.o imgresample.o msmpeg4.o \ | 8 motion_est.o imgconvert.o imgresample.o msmpeg4.o \ |
9 mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o | 9 mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o |
10 ASM_OBJS= | 10 ASM_OBJS= |
11 | 11 |
12 # currently using libac3 for ac3 decoding | 12 # currently using libac3 for ac3 decoding |
13 ifeq ($(CONFIG_AC3),yes) | 13 ifeq ($(CONFIG_AC3),yes) |
14 OBJS+= ac3dec.o \ | 14 OBJS+= ac3dec.o \ |
18 | 18 |
19 # i386 mmx specific stuff | 19 # i386 mmx specific stuff |
20 ifeq ($(TARGET_MMX),yes) | 20 ifeq ($(TARGET_MMX),yes) |
21 OBJS += i386/fdct_mmx.o i386/cputest.o \ | 21 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
22 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ | 22 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
23 i386/idct_mmx.o i386/motion_est_mmx.o | 23 i386/idct_mmx.o i386/motion_est_mmx.o \ |
24 i386/simple_idct_mmx.o | |
24 endif | 25 endif |
25 | 26 |
26 # armv4l specific stuff | 27 # armv4l specific stuff |
27 ifeq ($(TARGET_ARCH_ARMV4L),yes) | 28 ifeq ($(TARGET_ARCH_ARMV4L),yes) |
28 ASM_OBJS += armv4l/jrevdct_arm.o | 29 ASM_OBJS += armv4l/jrevdct_arm.o |