diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:42:28 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:42:28 +0000 |
commit | 3a0885146c61d6eff4da4006f6459e720fcf5ccd (patch) | |
tree | 406da1209da75dc7d303966665da812273e31ecb /libavcodec/x86/Makefile | |
parent | 2401660d2f200007d00337a86dc4d88f51a2f3f8 (diff) | |
download | ffmpeg-3a0885146c61d6eff4da4006f6459e720fcf5ccd.tar.gz |
Move vp6_filter_diag4() from DSPContext to VP56DSPContext.
Originally committed as revision 24921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 6397378605..0f0b8a24be 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -29,11 +29,13 @@ MMX-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_mmx.o MMX-OBJS-$(CONFIG_VP3_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o MMX-OBJS-$(CONFIG_VP5_DECODER) += x86/vp3dsp_mmx.o \ - x86/vp3dsp_sse2.o + x86/vp3dsp_sse2.o \ + x86/vp56dsp_init.o MMX-OBJS-$(CONFIG_VP6_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o \ x86/vp6dsp_mmx.o \ - x86/vp6dsp_sse2.o + x86/vp6dsp_sse2.o \ + x86/vp56dsp_init.o YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o MMX-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp-init.o MMX-OBJS-$(HAVE_YASM) += x86/dsputil_yasm.o \ |