diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-12-19 13:45:13 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-12-19 13:45:13 +0000 |
commit | a22eff36f95237147c47462c1aa356e3430c5f9f (patch) | |
tree | 547d3bb20b949ac6d67963f3a404ac903ee07708 /libavcodec/Makefile | |
parent | b9263c945f81c7a452807862ecd867481e9e9e5b (diff) | |
download | ffmpeg-a22eff36f95237147c47462c1aa356e3430c5f9f.tar.gz |
Port x264 deblocking code to libavcodec.
This includes SSE2 luma deblocking code and both MMXEXT and SSE2 luma
intra deblocking code for H.264 decoding. This assembly is available
under --enable-gpl and speeds decoding of Cathedral by 7%.
Originally committed as revision 16239 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 a78dfa2b03..67f23db2e4 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -404,7 +404,8 @@ MMX-OBJS-$(CONFIG_VP6_DECODER) += i386/vp3dsp_mmx.o i386/vp3dsp_sse2.o MMX-OBJS-$(CONFIG_VP6A_DECODER) += i386/vp3dsp_mmx.o i386/vp3dsp_sse2.o MMX-OBJS-$(CONFIG_VP6F_DECODER) += i386/vp3dsp_mmx.o i386/vp3dsp_sse2.o MMX-OBJS-$(CONFIG_WMV3_DECODER) += i386/vc1dsp_mmx.o -MMX-OBJS-$(HAVE_YASM) += i386/dsputil_yasm.o +MMX-OBJS-$(HAVE_YASM) += i386/dsputil_yasm.o \ + i386/h264_deblock_sse2.o OBJS-$(HAVE_MMX) += i386/cpuid.o \ i386/dnxhd_mmx.o \ |