aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-03-08 02:13:45 +0000
committerMike Melanson <mike@multimedia.cx>2004-03-08 02:13:45 +0000
commit44cb64ee89eeb1b28622cf697ff80f65d3bb5959 (patch)
tree723028c753ef5279d7a83ba4e919fc698032e388 /libavcodec/Makefile
parente82d912dba14d6d5ee53f84544ef50b79c288925 (diff)
downloadffmpeg-44cb64ee89eeb1b28622cf697ff80f65d3bb5959.tar.gz
seperated out the C-based VP3 DSP functions into a different file; also
ported the MMX-optimized versions of those functions Originally committed as revision 2855 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index a464610d6d..40f189bd04 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -20,7 +20,7 @@ OBJS= common.o utils.o mem.o allcodecs.o \
roqvideo.o dpcm.o interplayvideo.o xan.o rpza.o cinepak.o msrle.o \
msvideo1.o vqavideo.o idcinvideo.o adx.o rational.o faandct.o 8bps.o \
smc.o parser.o flicvideo.o truemotion1.o vmdav.o lcl.o qtrle.o g726.o \
- flac.o
+ flac.o vp3dsp.o
ifeq ($(AMR_NB),yes)
ifeq ($(AMR_NB_FIXED),yes)
@@ -116,7 +116,7 @@ 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/simple_idct_mmx.o i386/fft_sse.o
+ i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o
ifdef TARGET_BUILTIN_VECTOR
i386/fft_sse.o: CFLAGS+= -msse
endif