diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-04-25 03:33:30 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-04-25 03:33:30 +0000 |
commit | 38acbc3cb97cae0c36023979215e94c659a41076 (patch) | |
tree | ef78ac6add10b0fe0ebcafcbedee9359a37e4215 /libavcodec/Makefile | |
parent | 78a16bfec6d8b76be256b73b61b047c46766fa70 (diff) | |
download | ffmpeg-38acbc3cb97cae0c36023979215e94c659a41076.tar.gz |
hook up support for SSE2-optimized VP3 IDCT
Originally committed as revision 3064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index e3a2429ec7..3b8f14b338 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -116,7 +116,8 @@ 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/vp3dsp_mmx.o + i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ + i386/vp3dsp_sse2.o ifdef TARGET_BUILTIN_VECTOR i386/fft_sse.o: CFLAGS+= -msse depend: CFLAGS+= -msse |